/* Navbar Default */
.navb {
    height: 70px;
    padding: 0.5rem;
    margin: 10px;
    /* border-radius: 16px; */
    transition: all 0.3s ease-in-out;
    margin: 0px;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure it's above other elements */
    /* background-color: rgba(255, 255, 255, 0.9); */
    /* Light Background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* Navbar Toggler */
.navbar_t {
    border: none;
    font-size: 1.25rem;
}

.navbar_t:focus,
.btn_clo:focus {
    box-shadow: none;
    border: none;
}

/* Default: Navbar toggler button white */
.navbar_t .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    /* White color */
}

/* On scroll: Navbar toggler button black */
.scrolled .navbar_t .navbar-toggler-icon {
    filter: brightness(1) invert(0);
    /* Black color */
}


/* Navbar Fixed on Scroll */
.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    z-index: 1000;
}

.scrolled .navbar-nav .nav-item .nav_li {
    color: black !important;
}


/* Logo */
.navbar_b {
    font-weight: 600;
    font-size: 25px;
    color: #385474;
    transition: 0.3s color;
}

.navbar_b {
    height: 60px;
    width: auto;
}

/* Navbar Links */
.nav_li {
    color: #666777;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-item .nav_li {
    color: white !important;
}

/* When the offcanvas menu is open, change text to black */
.offcanvas.show .navbar-nav .nav-item .nav_li {
    color: black !important;
}

.nav_li:hover {
    color: #000;
    font-weight: 640;
}

.act {
    color: #000;
}

.nav_li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #385474;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.nav_li:hover::before,
.act::before {
    width: 100%;
    visibility: visible;
}

/* Login & Register Buttons */
.login_button,
.registar_button {
    background-color: #385474;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
    border: none;
}

.login_button:hover,
.registar_button:hover {
    background-color: #1b3858;
}

.login_button {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.registar_button {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

/* Contact Button - Professional Design */
.contact_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between icon and text */
    background-color: #25d366;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    border-radius: 50px;
    /* Fully rounded button */
    padding: 12px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid gainsboro;
}

/* WhatsApp Icon */
.whats_icon {
    font-size: 22px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.contact_btn:hover {
    background-color: #1ebe5d;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    /* Slight lift */
}

/* Click Effect */
.contact_btn:active {
    transform: scale(0.95);
}

@media (max-width: 385px) {
    .navbar_b {
        height: 30px;
        /* width: auto; */
    }
}





















/* Full Page Background */
.maincontainer {
    position: relative;
    height: 140vh;
    background-image: url('../Images/bg19.jpg');
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay Effect */
.maincontainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.landingpage1 h5 {
    color: white;
    font-size: 1.35rem;
    /* Slightly bigger font */
    font-weight: 400;
    /* Medium weight for emphasis */
    text-transform: uppercase;
    /* Optional: Uppercase letters */
    letter-spacing: 1px;
    /* Spacing for better readability */
    opacity: 0.8;
    /* Slightly faded for subheading feel */
    margin-bottom: 20px;
}

.landingpage1 h2 {
    color: white;
    font-size: 2.35rem;
    /* Slightly bigger font */
    font-weight: 500;
    /* Medium weight for emphasis */
    text-transform: uppercase;
    /* Optional: Uppercase letters */
    letter-spacing: 1px;
    /* Spacing for better readability */
    opacity: .9;
    /* Slightly faded for subheading feel */
    margin-bottom: 20px;
}


.searchrow {
    margin-top: 40px;
    padding: 30px 20px;
    padding-bottom: 0px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* From Uiverse.io by LightAndy1 */
.group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    /* max-width: 190px; */
}

.input {
    width: 100%;
    height: 40px;
    line-height: 28px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color: #f3f3f4;
    color: #0d0c22;
    transition: 0.3s ease;
}

.input::placeholder {
    color: #9e9ea7;
}

.input:focus,
input:hover {
    outline: none;
    border-color: rgba(0, 48, 73, 0.4);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgb(0 48 73 / 10%);
}

.icon {
    position: absolute;
    left: 1rem;
    fill: #9e9ea7;
    width: 1rem;
    height: 1rem;
}

.custom-select {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    /* Space for icon */
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color: #f3f3f4;
    color: #0d0c22;
    transition: 0.3s ease;
    /* appearance: none; */
    /* Hide default arrow in some browsers */
    cursor: pointer;
}





.sbtn {
    width: 100%;
    height: 40px;
    line-height: 28px;
    padding: 0 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color: #385474;
    color: #fff;
    /* font-weight: bold; */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.sbtn:hover {
    background-color: #1b3858;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Click (Active) Effect */
.sbtn:active {
    transform: scale(0.95);
    /* Slight shrink effect */
    background-color: #1b3858;
    /* Darker color when clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Job Poster Button */
.job-poster-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #ff6600;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.job-poster-btn:hover {
    background-color: #cc5500;
}






















.landingpage2 {
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

/* Stunning h4 */
.landingpage2 h4 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666777;
    /* margin-bottom: 15px; */
    margin-top: 80px;
}

.underline-with-box {
    position: relative;
    width: 250px;
    height: 2px;
    background-color: #385474;
    margin: 20px auto 20px;
}

.underline-with-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #1b3858;
    transform: translate(-50%, -50%) rotate(45deg);
    /* Rotate the box */
}



/* Elegant h5 */
.landingpage2 h5 {
    font-size: 18px;
    font-weight: 400;
    color: #323131;
    /* Grayish tone */
    max-width: 650px;
    line-height: 1.2;
    padding: 12px 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landingpage2 h4 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .landingpage2 h5 {
        font-size: 18px;
        max-width: 500px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .landingpage2 h4 {
        font-size: 28px;
    }

    .landingpage2 h5 {
        font-size: 16px;
        max-width: 90%;
    }
}


.Categorybox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 220px;
    width: 240px;
    border-radius: 7px;
    background-color: #f8f9fd;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 20px;
}

/* Hover Effect */
.Categorybox:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Row */
.iconrow {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

/* Category Name */
.categoryname {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

/* Job Quantity */
.jobquantity {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Row Styling */
.Categoryboxrow {
    display: flex;
    width: 100%;
    justify-content: center;
    /* gap: 20px; */
    flex-wrap: wrap;
    margin-top: 50px !important;
}

.Categoryboxrow2 {
    display: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px !important;
}

.Categoryboxcol {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Categorybox {
        width: 190px;
        /* Pehle 170px tha */
        height: 200px;
    }
}

@media (max-width: 480px) {
    .Categorybox {
        width: 160px;
        /* Pehle 150px tha */
        height: 180px;
    }
}

/* Icon */
/* Icon Row - Circular Styling */
.iconrow {
    width: 80px;
    height: 80px;
    background-color: #fafafa;
    border: 2px solid #a9a9a9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    flex-shrink: 0;
    /* Prevent shrinking */
}

/* Icon Styling */
.iconrow i {
    font-size: 30px;
    color: #385474;
}


/* Category Name */
.categoryname {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin-bottom: 5px;
    text-align: center;
    white-space: nowrap;
    /* Prevents text from breaking */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Adds "..." if text is too long */
    max-width: 90%;
    /* Prevents full width stretching */
}

/* Job Quantity */
.jobquantity {
    font-size: 17px;
    font-weight: 400;
    color: #25d366;
    margin-top: 5px;
}

.loadmorerow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadmorebtn {
    text-align: center;
    border-radius: 8px;
    border: 2px solid #385474;
    padding: 8px 50px;
    color: #385474;
    font-size: 18px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.loadmorebtn:hover {
    background-color: #385474;
    color: #fff;
}

/* Click (Active) Effect */
.loadmorebtn:active {
    transform: scale(0.95);
    background-color: #2e435d;
    color: #fff;
}

.loadmorebtn i {
    font-size: 12px;
}

.Categoryboxrow2 {
    display: flex;
    width: 100%;
    justify-content: center;
    /* gap: 20px; */
    flex-wrap: wrap;
    /* margin-top: 50px !important; */
}


.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 40px;
    box-sizing: border-box;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #385474;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.left {
    left: 10px;
}

.carousel-btn.right {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}


























.landingpage3 {
    background-color: #f8f9fd;
    margin: 0px;
    padding: 0px;
}

.jobtyperowR,
.jobtyperowF {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
}

.jobtyperowR.active,
.jobtyperowF.active {
    display: block;
    /* 👈 Ye jaruri hai */
    opacity: 1;
    visibility: visible;
    position: relative;
}



.jobtypesbtnrow {
    display: flex;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.recentjobs,
.featuredjobs {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.recentjobs.active,
.featuredjobs.active {
    background-color: #385474;
    color: #fff;
}

.jobtyperowR,
.jobtyperowF {
    display: none;
}







/* ✅ Main Job Box */
.jobrowbox {
    border: 1px solid #385474;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition */
    margin-bottom: 20px;
}

.jobrowbox:hover {
    transform: translateY(-5px) scale(1.03);
    /* Move up + Slight scale */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ✅ Upper Section */
.upper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}

/* ✅ Image */
.jobimg img {
    width: 120px;
    /* Responsive */
    height: 120px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ✅ Job Name Section */
.jobname {
    flex: 1 1 200px;
    padding-left: 20px;
    /* Left padding for proper alignment */
}

.jobtitle {
    font-size: 18px;
    font-weight: 600;
    color: #385474;
    margin-bottom: 5px;
}

.jobcompanyname {
    font-size: 15px;
    color: #555;
}

/* ✅ Location, Salary, Job Type */
/* .joblocation, */
.jobsalary,
.jobtype {
    font-size: 15px;
    color: #333;
    padding: 8px 12px;
    background-color: #f8f9fd;
    border-radius: 5px;
    /* white-space: nowrap; */
}

.joblocation {
    max-width: 250px;
    word-wrap: break-word;
    /* Text wrap karne ke liye */
    padding: 8px 8px !important;
    font-size: 15px;
    color: #333;
    /* padding: 8px 12px; */
    background-color: #f8f9fd;
    border-radius: 5px;
}


/* ✅ Lower Section */
.lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fd;
    border-radius: 8px;
}

/* ✅ Experience Section */
.jobexperience {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    gap: 5px;
    /* Space between h5 and h6 */
}

.jobexperience h5 {
    color: #000;
    /* Black color */
    margin: 0;
    font-size: 17px;
}

.jobexperience h6 {
    color: #385474;
    /* Blue color */
    margin: 0;
    font-size: 16px;
}

/* ✅ Notes Section */
.jobimpnote {
    font-size: 14px;
    color: #555;
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jobimpnote .notehead {
    color: #000;
    /* Black color for 'Notes :' */
    font-weight: 600;
}

.jobimpnote .notecontent {
    color: #555;
    /* Normal color for the content */
}


/* From Uiverse.io by javierBarroso */
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
}

/* Background Circle */
.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    background: #234567;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Dynamic Text from data-attribute */
.cta::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    background: #fff;
    width: 9px;
    height: 21px;
    transition: all 0.3s ease;
    font-family: "Ubuntu", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 12px 18px;
    z-index: 2;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-align: left;
}

/* span not visible, use ::after for text */
.cta span {
    opacity: 0;
}

/* SVG Icon */
.cta svg {
    position: relative;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #234567;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    z-index: 2;
}

/* Hover Effects */
.cta:hover::before {
    width: 100%;
}

.cta:hover::after {
    width: 100%;
    color: #fff;
}

.cta:hover svg {
    transform: translateX(0);
    stroke: #fff;
}

.cta:active {
    transform: scale(0.95);
}


#recentJobsControls {
    text-align: center;
    margin-top: 20px;
    display: block !important;
}



/* ✅ Mobile View Adjustments */
@media (max-width: 768px) {
    .upper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .jobimg img {
        width: 50px;
        height: 50px;
    }

    .jobtitle {
        font-size: 16px;
    }

    .jobcompanyname,
    .joblocation,
    .jobsalary,
    .jobtype,
    .jobexperience,
    .jobimpnote {
        font-size: 13px;
    }

    .jobapplybtn button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .jobapplybtn {
        width: 100%;
        /* Full width button on mobile */
        margin-bottom: 20px;
    }

    .cta {
        padding: 10px 16px;
        font-size: 14px;
    }

    .cta::after {
        font-size: 14px;
        padding: 10px 16px;
    }

    .cta svg {
        width: 12px;
        height: 8px;
        margin-left: 8px;
    }

    .lower {
        gap: 10px;
    }
}


























.landingpage4 {
    position: relative;
    padding: 60px 2px;
    background-image: url('../Images/bg5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Overlay Effect */
.landingpage4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.l4mainrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.l4maincolleft {
    flex: 1;
    min-width: 300px;
}

.l4maincolleft h4 {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    opacity: .9;
}

.l4maincolleft h5 {
    font-size: 20px;
    color: #fff;
    max-width: 500px;
    line-height: 1.6;
    opacity: .9;
}

.l4maincolright {
    padding-top: 40px;
    flex: 1;
    min-width: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.col2box ion-icon {
    font-size: 40px;
    color: #b6b4b4;
    margin-bottom: 5px;
    opacity: .9;
}

.col2box h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.3s ease;
    background-color: #373634;
    padding: 5px 10px;
    border-radius: 5px;
}

.col2box h5:hover {
    color: #e0e0e0;
    background-color: #4a4947;
    transform: scale(1.05);
}

.col2box h6 {
    font-size: 14px;
    color: #b6b4b4;
    line-height: 1.5;
    opacity: .9;
}

/* RESPONSIVE DESIGN */

/* Large Tablets */
@media (max-width: 992px) {
    .l4maincolright {
        grid-template-columns: 1fr;
    }

    .l4maincolleft h4 {
        font-size: 50px;
    }

    .l4maincolleft h5 {
        font-size: 18px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .l4mainrow {
        flex-direction: column;
        text-align: center;
    }

    .l4maincolleft h4 {
        font-size: 36px;
    }

    .l4maincolleft h5 {
        font-size: 16px;
        max-width: 100%;
        margin: auto;
    }

    .l4maincolright {
        grid-template-columns: 1fr;
    }

    .col2box ion-icon {
        font-size: 35px;
    }

    .col2box h5 {
        font-size: 16px;
    }

    .col2box h6 {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .l4maincolleft h4 {
        font-size: 28px;
    }

    .l4maincolleft h5 {
        font-size: 14px;
    }

    .col2box ion-icon {
        font-size: 30px;
    }

    .col2box h5 {
        font-size: 15px;
    }

    .col2box h6 {
        font-size: 12px;
    }

    .l4maincolright {
        gap: 15px;
    }
}




























.videorow {
    background-image: url('../images/bg90.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 70vh;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}

/* Overlay Effect */
/* .videorow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */

.videocol2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    z-index: 2;
    padding: 15px;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Desktop pe 700px */
}

.video-container iframe {
    width: 100%;
    height: 60vh;
    min-height: 300px;
    max-height: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: none;
}

/* Play Button Styling */
.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    cursor: pointer;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #00aaff96;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #00aaff96;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button span {
    display: block;
    position: absolute;
    z-index: 13;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .video-container {
        max-width: 90%;
    }

    .video-container iframe {
        height: 45vh;
        min-height: 280px;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }

    .video-container iframe {
        height: 40vh;
        min-height: 250px;
        max-height: 400px;
    }

    .video-play-button:before,
    .video-play-button:after {
        width: 70px;
        height: 70px;
    }

    .video-play-button span {
        border-left: 28px solid #fff;
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
    }
}

@media (max-width: 480px) {
    .videorow {
        min-height: 50vh;
        padding: 20px;
    }

    .video-container iframe {
        height: 35vh;
        min-height: 220px;
        max-height: 350px;
    }

    .video-play-button:before,
    .video-play-button:after {
        width: 60px;
        height: 60px;
    }

    .video-play-button span {
        border-left: 22px solid #fff;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
    }
}




































.l4tickerrow {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0px;
    flex-wrap: wrap;
    /* Important for responsiveness */
    gap: 20px;
    background-image: url('../Images/bg90.jpg');
    background-size: cover;
    background-position: start;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 20px;
    margin-bottom: 40px;
    z-index: 1;
    overflow: hidden;
}

/* .l4tickerrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
} */


.tickerbox {
    /* background: linear-gradient(135deg, #ffffff, #f1f1f1); */
    color: #385474;
    padding: 25px 35px;
    text-align: center;
    border-radius: 15px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    transition: all 0.4s ease;
    opacity: 0.95;
    /* border: 1px solid #dcdcdc; */
    /* backdrop-filter: blur(5px); */
    flex: 1 1 250px;
    /* Flexible box */
    max-width: 300px;
}

.tickerbox h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: black;
}

.tickerbox h4 {
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
}

.tickerbox h2 {
    position: relative;
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: black;
    transition: all 0.3s ease;
}

.tickerbox h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 5px;
    width: 0;
    background-color: #385474;
    transition: width 0.5s ease;
}

/* Hover Effect */
.tickerbox:hover h2::after {
    width: 100%;
}

/* Optional: h2 Size Bada on Hover */
/* .tickerbox:hover h2 {
    font-size: 44px;
} */





/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .l4tickerrow {
        justify-content: center;
        padding: 20px 10px;
    }

    .tickerbox {
        padding: 20px 25px;
        min-width: 90%;
        max-width: 90%;
    }

    .tickerbox h2 {
        font-size: 36px;
    }

    .tickerbox h4 {
        font-size: 20px;
    }
}



































.footer {
    background-color: #f8f9fd;
    color: #fff;
    padding: 30px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-box {
    flex: 1 1 250px;
    margin: 15px;
}

.footer-box h3 {
    font-size: 24px;
    color: #385474;
    margin-bottom: 15px;
}

.footer-box h5 {
    font-size: 20px;
    color: #385474;
    margin-bottom: 15px;
}

.footer-box p {
    margin: 8px 0;
    color: #444444;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-box p:hover {
    color: #1b3858;
    transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-box {
        margin: 20px 0;
    }
}

















.social {
    border: 5px solid #8080808f;
    padding: 20px;
    border-radius: 25px;
    text-align: center;
}

.wrapper {
    display: inline-flex;
    list-style: none;
    width: 100%;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.wrapper .icon {
    position: relative;
    background: #385474;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #385474;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #0861f4;
    color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #0f1418;
    color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #1567c2;
    color: #fff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}