/* General Styles */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Secondary Header */
.secondary-header {
    background: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    position: relative;
    z-index: 1100;
    transition: top 0.3s ease;
}

.quick-links,
.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-links a,
.social-media a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 5px 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-bar a {
    background: #0077cc;
    color: white;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
    text-decoration: none;
}

.social-media a {
    width: 30px;
    height: 30px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: top 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
}

.logo h2 {
    color: #004080;
    font-size: 2.0rem;
}

/* Desktop Navigation */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.desktop-menu>li {
    position: relative;
}

.desktop-menu a {
    color: #003366;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.desktop-menu a:hover {
    background: #f0f8ff;
}

.desktop-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.desktop-menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    padding: 10px 20px;
    color: #333;
}

.submenu a:hover {
    background: #e6f2ff;
    color: #004080;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #003366;
    cursor: pointer;
}



.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}



.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #09549e;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #003366;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav .submenu-trigger {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-submenu a {
    padding: 10px 0;
    color: #555;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 2;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .logo h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .secondary-header {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .quick-links,
    .social-media {
        justify-content: center;
        width: 100%;
    }

    .search-bar {
        width: 100%;
        justify-content: center;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo h2 {
        font-size: 2.1rem;
    }
}


.hero-slider {
    overflow: hidden;
    position: relative;
}

.hero-slider .slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.hero-slider .slide {
    min-width: 100%;
    position: relative;
}



/* *********************CONTROLS FOR COLOUR************************** */

.control {
    position: fixed;
    right: 0;
    top: 15%;
    z-index: 100;
    transform: translateX(100%);
    /* hide it by sliding out */
    transition: transform 300ms ease-in-out;
}

/* Slide in when open */
.control.open {
    transform: translateX(0);
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.control.open {
    right: 0;
}

.control .widget {
    position: absolute;
    left: -3.4rem;
    /* keeps the widget cog on screen */
    border-radius: 1rem 0 0 1rem;
    padding: 0.5rem 0.7rem;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}


@media (max-width: 768px) {
    .control .widget {
        left: -2.8rem;
    }

    .control .colors span {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0.5rem;
    }
}


.control .widget i {
    font-size: 2rem;
    animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
}

.control .colors {
    background-color: #fff;
    padding: 1rem 0.8rem;
}

.control .colors span {
    display: block;
    width: 1.9rem;
    height: 1.9rem;
    padding: 0.7rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.control .colors span {
    margin-top: 5px;
}

.control .colors span:nth-child(1) {
    margin: 0;
    background-color: var(--blue);
}

.control .colors span:nth-child(2) {
    background-color: var(--orange);
}

.control .colors span:nth-child(3) {
    background-color: var(--purple);
}

.control .colors span:nth-child(4) {
    background-color: var(--cyan);
}







/* Animated Text HEADER Styles */
.animated-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    background: #252839;
}

.animated-text {
    position: relative;
    font-size: 5vw;
    /* Base font size for desktop */
    color: #39437c;
    -webkit-text-stroke: 0.3vw #383d52;
    text-transform: uppercase;
}

.animated-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #01fe87;
    -webkit-text-stroke: 0vw #383d52;
    border-right: 2px solid #01fe87;
    overflow: hidden;
    animation: animateText 6s linear infinite;
}

@keyframes animateText {

    0%,
    10%,
    100% {
        width: 0;
    }

    70%,
    90% {
        width: 100%;
    }
}

/* Responsive font increase for mobile devices */
@media (max-width: 768px) {
    .animated-text {
        font-size: 9vw;
        /* Increase font size on smaller screens */
    }
}


/* **********************OUR SERVICES ************************* */

:root {
    --customColor: #ff4c60;
}

/* Service */
.theme {
    background-color: #000;
}

.theme .title {
    color: #fff;
}

.service-center {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.service {
    color: #fff;
    background-color: #111;
    padding: 2rem 3rem;
    text-align: center;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease;
}

.service span i {
    color: var(--customColor);
    font-size: 4rem;
    transition: all 300ms ease-in-out;
    margin-bottom: 1rem;
}

.service h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.title h1 {
    color: rgb(8, 8, 8);
}

.service p {
    font-size: 1.6rem;
    color: #afa6a6;
    line-height: 25px;
}

.service:hover {
    background-color: var(--customColor);
}

.service:hover span i {
    color: #fff;
}

/* Animation Effects */
.animate-left {
    transform: translateX(-100px);
}

.animate-right {
    transform: translateX(100px);
}

.animate-bottom {
    transform: translateY(100px);
}

.animate-left.show,
.animate-right.show,
.animate-bottom.show {
    transform: translateX(0) translateY(0);
    opacity: 1;
}


/* **********************WHO WE ARE************************* */

:root {
    --customColor: #ff6347;
}

.skills-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.skills-box:not(:last-child) {
    margin-bottom: 2rem;
}

.skills-box h4 {
    font-size: 1.8rem;
    color: #888;
    font-weight: 500;
}

.skill-ilt {
    width: 100%;
    background-color: #332222;
    height: 5px;
    position: relative;
    border-radius: 5px;
}

.skill-ilt .skill-bar {
    background-color: var(--customColor);
    height: 5px;
    border-radius: 5px;
}

.skill-ilt span {
    position: absolute;
    top: -20px;
    right: 0;
}

.skill-ilt .html {
    width: 100%;
}

.skill-ilt .css {
    width: 100%;
}

.skill-ilt .javascript {
    width: 100%;
}

.skill-ilt .nodejs {
    width: 100%;
}

.skill-ilt .mongodb {
    width: 100%;
}

.slills-right h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

.slills-right p {
    margin-bottom: 2rem;
    line-height: 30px;
}

@media screen and (max-width: 768px) {
    .skills-center {
        grid-template-columns: 1fr;
    }
}

/* Animation CSS */
.animate {
    opacity: 0;
    transition: all 1s ease;
}

.animate[data-animate="from-left"] {
    transform: translateX(-100px);
}

.animate[data-animate="from-bottom"] {
    transform: translateY(100px);
}




/* **********************HEADMISTRESS ************************* */

:root {
    --customColor: #3498db;
}

/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav {
    background-color: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.typed-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--customColor);
    margin-bottom: 1rem;
}


.nav.fix-nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

:root {
    --customColor: #3498db;
}

/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav {
    background-color: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.nav.fix-nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

:root {
    --customColor: #0077cc;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

.section {
    padding: 5rem 0 7rem 0;
    overflow-x: hidden;
}

.about {
    margin-top: 5rem;
}

.about-center {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem 5rem;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.title {
    margin: 4rem 0 7rem 0;
    text-align: center;
}

.title h1 {
    font-size: 3rem;
    display: inline-block;
    position: relative;
}

.title h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -50%;
    transform: translate(-50%, -50%);
    background-color: var(--customColor);
    width: 50%;
    height: 0.4rem;
    z-index: 1;
}

.left img {
    height: 40rem;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.right h1 {
    margin-bottom: 2rem;
}

.right p {
    line-height: 2;
    margin-bottom: 2rem;
    color: #333;
}

.right h1 span {
    color: var(--customColor);
}

a.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--customColor);
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

a.btn:hover {
    transform: translateY(-3px);
}

@media only screen and (max-width: 996px) {
    .right h1 {
        font-size: 2rem;
    }

    .right p {
        font-size: 1.5rem;
    }

    .left img {
        height: 40rem;
        max-width: 25rem;
    }
}

@media only screen and (max-width: 768px) {
    .about-center {
        grid-template-columns: 1fr;
        gap: 3rem 0;
    }

    .left {
        text-align: center;
    }

    .left img {
        height: 40rem;
        max-width: 90%;
    }

}

/* Scroll Animation Styles */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 1s ease;
}

[data-scroll][data-scroll-delay] {
    transition-delay: var(--scroll-delay, 0ms);
}

[data-scroll="fade-left"] {
    transform: translateX(-50px);
}

[data-scroll="fade-right"] {
    transform: translateX(50px);
}

[data-scroll="scale-in"] {
    transform: scale(0.85);
}

.scroll-show[data-scroll="fade-left"],
.scroll-show[data-scroll="fade-right"],
.scroll-show[data-scroll="scale-in"] {
    opacity: 1;
    transform: none;
}



/* **********************FLIPPPING CARDS************************* */


/* Key Attractions Styles */
#attractions {
    padding: 50px 0;
    background: url('img/department\ bann.png') no-repeat center center fixed;
    text-align: center;
}

#attractions h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #15141a;
    text-align: center;
}

.attraction-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.attraction-card {
    width: 300px;
    height: 400px;
    perspective: 1000px;
    /* Give a 3D space for the flip effect */
}

.attraction-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.attraction-card:hover .attraction-card-inner,
.attraction-card:focus .attraction-card-inner {
    transform: rotateY(180deg);
}

.attraction-card-front,
.attraction-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Hide the back when not flipped */
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.attraction-card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.attraction-card-front img {
    width: 100%;
    height: auto;
}

.attraction-card-front h3 {
    margin: 15px 0;
    font-size: 1.5em;
    color: #333;
}

.attraction-card-back {
    background-color: #071c79;
    color: #5418df;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.attraction-card:hover .attraction-card-back p,
.attraction-card:focus .attraction-card-back p {
    animation: slideInLeft 0.6s forwards;
    animation-delay: 0.2s;
}

.attraction-card-back p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #ebf0e3;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}


.book-btn {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #0056b3;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* **********************MIDDLE BANNERS      ************************* */

.clean-banner-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.clean-slide {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: none;
    border-radius: 8px;
}

.clean-slide.show {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive heights */
@media (max-width: 768px) {
    .clean-slide {
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    .clean-slide {
        max-height: 220px;
    }
}




/* **********************FACILITY SLIDER ************************* */
.facilities-section {
    padding: 60px 20px;
    background-image: url('img/cadet.png');
    text-align: center;
    overflow: hidden;

}

.facilities-header {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: #272924;
}

.facilities-carousel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.facilities-subtitle {
    font-size: 2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.facilities-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.facility-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
}

.facility-slide img {
    width: 300%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.facility-slide h3 {
    font-size: 2.4rem;
    color: white;
    background-color: #003366;
    /* Dark blue */
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.facility-slide p {
    font-size: 1.5rem;
    color: #222;
    background-color: #fbd4b1;
    padding: 10px 18px;
    border-radius: 15px;
    display: inline-block;
    max-width: 90%;
    line-height: 1.4;
}

.facilities-nav {
    margin-top: 20px;
}

.facilities-nav button {
    background-color: rgb(15, 15, 150);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    margin: 0 10px;
    padding: 10px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.facilities-nav button:hover {
    background-color: #005f87;
}

.facilities-dots {
    margin-top: 15px;
}

.facilities-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
    cursor: pointer;
}

.facilities-dot.active {
    background-color: #0077b6;
}

.facilities-more {
    margin-top: 30px;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(15, 15, 150);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.view-more-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.view-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.4);
}

.view-more-btn:hover::after {
    left: 100%;
}

/* Responsive layout: show 3 slides on desktop */
@media (min-width: 769px) {
    .facility-slide {
        flex: 0 0 33.333%;
    }
}






/* FOOTER*/
.footer-area {
    margin-top: 100px;
    padding: 100px 0;
    background: #062f68;

    color: #fff;
    position: relative;
    text-align: left;
    /* Center align content for smaller screens */
}

.main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

}

.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}


.single-footer {
    width: 230px;
}

.single-footer:first-child {
    width: 400px;
}

.single-footer h4 {

    font-size: 22px;
    margin-bottom: 20px;

}

.footer-social a {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}



.single-footer ul {
    list-style: none;
    padding: 0;
}

.single-footer ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.single-footer ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    /* Add this line */
    padding-left: 20px;
    /* Add this to make space for the icon */
}


.single-footer ul li a:hover {
    text-decoration: underline;
}


/* Style for the powered by text */
.copy .powered-by {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.copy .powered-by a {
    color: #ffab00;
    /* Customize the link color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.copy .powered-by a:hover {
    color: #f39c12;
    /* Hover effect color */
}

.copy {
    text-align: center;
    text-transform: capitalize;
    margin-top: 50px;
}


/* Center the school logo */
.logo-footer {
    width: 230px;
    /* Same width as other sections */
    text-align: center;
    margin: 0 auto;
    /* Centers the logo horizontally */
}

.footer-logo {
    max-width: 180px;
    /* Adjust the size if needed */
    width: 100%;
    height: auto;
}

/* Center the social media icons */
.footer-social-container {
    display: flex;
    justify-content: center;
    /* Center the social media icons */
    align-items: center;
    margin-top: 30px;
    /* Add margin for spacing if needed */
}

.footer-social {
    text-align: center;
    /* Ensures social icons are centered inside the container */
}

/* Mobile View Adjustments */
@media (max-width: 992px) {
    .footer {
        flex-direction: column;
        align-items: center;
        /* Center all footer content */
    }

    .single-footer {
        width: 100%;
        text-align: left;
        /* Center the text on mobile */
    }

    /* Center the logo and social icons on mobile */
    .logo-footer,
    .footer-social-container {
        width: 100%;
        /* Take full width on mobile */
        text-align: center;
        /* Align content to the center */
    }

    .footer-logo {
        max-width: 150px;
        /* Make logo smaller on mobile */
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    /* Shift h4 to the right on mobile */
    .single-footer h4 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-left: 50px;
        /* Add padding to shift h4 slightly to the right */
        text-align: left;
        /* Ensure text aligns left */
    }
}


/* Optional: Logo size adjustment for smaller screens */
@media (max-width: 576px) {
    .footer-logo {
        max-width: 120px;
        /* Even smaller logo on extra small screens */
    }
}

/* Style for the logo image with a round circle */
.logo-footer img {
    width: 150px;
    /* Adjust the size of the logo */
    height: 150px;
    /* Keep the height equal to width for a perfect circle */
    object-fit: cover;
    /* Ensure the image fits within the circle */
    border-radius: 50%;
    /* Creates the circular shape */
    border: 5px solid #fff;
    /* Add a white border around the logo */
    padding: 10px;
    /* Optional: Adds space between the logo and the border */
    transition: all 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Hover effect for the logo */
.logo-footer img:hover {
    transform: scale(1.1);
    /* Slightly enlarge the logo on hover */
    border-color: #ffab00;
    /* Change border color on hover (you can customize the color) */
}

/* Mobile View Adjustments */
@media (max-width: 992px) {
    .logo-footer img {
        width: 120px;
        /* Adjust logo size for mobile */
        height: 120px;
        /* Keep it square for a perfect circle */
        padding: 8px;
        /* Adjust padding for mobile */
    }

    .footer-social-container {
        flex-direction: column;
        /* Stack the social icons vertically on mobile */
        margin-top: 15px;
        /* Add space between logo and icons */
    }

    .footer-social a {
        width: 35px;
        /* Adjust icon size */
        height: 35px;
        line-height: 35px;
    }
}

/* Style for Scroll-to-Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 50px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
}





/* ********************** VIDEO PLAY SECTION  ************************* */

.custom-video-container {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #000;
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Unique play button */
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s;
}

.custom-play-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Progress bar */
.controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.controls input[type=range] {
    width: 90%;
    accent-color: red;
    cursor: pointer;
}

/* Toggle menu */
.toggle-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    z-index: 2;
}

/* Share options with real icons and shadow */
.share-options {
    position: absolute;
    top: 50px;
    right: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.share-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-options a {
    text-decoration: none;
    font-size: 20px;
    margin: 6px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.share-options a:hover {
    transform: scale(1.1);
}

/* Download button */
.download-section {
    text-align: center;
    margin-top: 15px;
}

.download-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Responsive tweaks */
@media screen and (max-width: 600px) {
    .custom-video-container {
        width: 95%;
    }

    .custom-play-btn {
        font-size: 40px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .toggle-menu {
        font-size: 20px;
        padding: 4px 8px;
    }

    .share-options a {
        font-size: 18px;
    }
}






/* **********************STAFF AND LATEST NEWS AND UPDATE  ************************* */

:root {
    --customColor: #0044ff;
    --purple: #ce00ff;
    --blue: #0044ff;
    --orange: #ff4500;
    --cyan: #03ffc7;
    --light: #33b3e6;
}

*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 114rem;
    margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

.section.theme {
    background-color: #071c79;
    background: url('img/services\ bann.png') no-repeat center center fixed;
    background-size: cover;
    /* Ensures it fills the section */
    height: 100vh;
    /* Adjust this value to reduce or increase height */
    position: relative;
}



.team {
    color: #fff;
    background-color: yellow;
    padding: 3rem;
    text-align: center;
    border-radius: 1rem;
    border-bottom: 4px solid transparent;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;

}

.team .img-cover {
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--customColor);
    height: 13rem;
    width: 13rem;
    margin: 0 auto;
    transition: all 300ms ease-in-out;
}

.team .img-cover img {
    height: 100%;
    object-fit: cover;
}

.team h3 {
    font-size: 1.6rem;
    margin: 1rem 0;
    color: #1a0202;
}

.team p {
    font-size: 1.5rem;
    color: #1a0202;
    width: 80%;
    margin: 0 auto 1rem auto;
}

.team:hover {
    border-bottom: 4px solid #fff;
    background-color: var(--customColor);
}

.glide__bullets {
    display: flex;
    justify-content: center;
    /* Center the bullets */
    gap: 10px;
    /* Optional: spacing between bullets */
    margin-top: 1rem;
    /* Add space from slides */
}

.glide__bullet {
    width: 15px;
    /* Increase bullet size */
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    /* Default color */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.glide__bullet:focus,
.glide__bullet:hover,
.glide__bullet.glide__bullet--active {
    background-color: var(--customColor);
    /* Active/hover/focus state */
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 2rem;


}

.blog-box {
    width: 100%;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.8);

}

.image-container {
    height: 20rem;
}

.image-container img {
    object-fit: cover;
    height: 25rem;
}

.blog-box .content {
    padding: 6rem 2rem;
}

.blog-box .content h4 {
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.blog-box .content p {
    color: #222;
    margin-bottom: 1rem;
}

.blog-box a:link,
.blog-box a:visited {
    display: inline-block;
    padding: 0.7rem 0;
    color: var(--customColor);
    border-bottom: 2px solid var(--customColor);
}

.blog-slider {
    max-width: 1200px;
    margin: 0 auto;
    /* Centers the slider */
    padding: 0 1rem;
    /* Adds breathing room on the sides */
}

.glide__slides {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.blog-slider,
.glide {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.glide__arrow--left {
    left: -1rem;
}

.glide__arrow--right {
    right: -1rem;
}

/* Default arrow styles */
.glide__arrow {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

/* Position arrows */
.glide__arrow--left {
    left: 10px;
}

.glide__arrow--right {
    right: 10px;
}

/* Adjust arrow visibility and placement on mobile */
@media screen and (max-width: 567px) {
    .glide__arrow--left {
        left: 5px;
    }

    .glide__arrow--right {
        right: 5px;
    }

    .glide__arrow {
        padding: 0.7rem;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 567px) {
    .glide__slides {
        justify-content: center;
    }

    .glide__slide {
        display: flex;
        justify-content: center;
    }

    .blog-box {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 567px) {
    .image-container {
        width: 100%;
        height: 200px;
        /* adjust height as needed */
        overflow: hidden;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}



@media screen and (max-width: 768px) {
    .blog-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 567px) {
    .blog-content {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }
}

.header {
    margin: 4rem 0 7rem 0;
    text-align: center;
}

.header h1 {
    font-size: 3rem;
    display: inline-block;
    position: relative;
    color: white;
}

.header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -50%;
    transform: translate(-50%, -50%);
    background-color: var(--customColor);
    width: 50%;
    height: 0.4rem;
    z-index: 1;
}


.right h1 {
    margin-bottom: 2rem;
}


.right h1 span {
    color: var(--customColor);
}



@media only screen and (max-width: 996px) {
    .right h1 {
        font-size: 2rem;
    }

}

/* **********************CONTACT  ************************* */

.contact-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-center .right,
.contact-center .left {
    color: rgb(63, 62, 62);
    text-align: left;
}

.contact-center .left h2 {
    font-size: 2.5rem;
}

.contact-center .left p {
    font-size: 1.6rem;
    line-height: 1.6;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.icon-box span i {
    font-size: 2.2rem;
    color: var(--customColor);
}

.contact-center .right h2 {
    font-size: 2rem;
}

.contact-center .right form .form-control {
    width: 100%;
    padding: 1rem 0.5rem;
    margin-top: 1rem;
    outline: none;
    font-size: 1.6rem;
    font-weight: 500;
    border: 0.1rem solid #ccc;
    font-family: 'Poppins', sans-serif;
}

.contact-center .right form textarea {
    resize: vertical;
}

.contact-center .right form textarea::placeholder,
.contact-center .right form input::placeholder {
    color: #ccc;
}

.contact-center .right .btn {
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    margin-top: 1rem;
    font-size: 1.6rem;
    background-color: var(--customColor);
    color: #fff;
}

.contact-center .right .btn:hover {
    background-color: transparent;
    color: var(--customColor);
    border: 0.1rem solid var(--customColor);
}

@media screen and (max-width: 768px) {
    .contact-center {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation (Bottom to Top) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* **********************OUR STAFF   ************************* */

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container: 120rem;
    --m-auto: 0 auto;
    --white: #fff;
    --bg: rgb(238, 238, 241);
    --arrow-bg: rgb(254, 254, 254);
    --dot: rgb(206, 206, 206);
    --dot-active: rgb(135, 89, 214);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-size: 1.6rem;
    font-family: Arial, sans-serif;
}

.hero-slider {
    max-width: var(--container);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 51rem;
    position: relative;
    margin: 3rem auto;
}

@media (max-width:768px) {
    .hero-slider {
        height: calc(100vh - 2rem);
        margin: 1rem 0;
    }
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: var(--arrow-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
}

.arrow ion-icon {
    font-size: 2.5rem;
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

.slider-container {
    max-width: var(--container);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 20%;
    left: 5%;
    z-index: 10;
    color: white;
    text-align: left;
    max-width: 50%;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
}

.slide-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.slide-content a.download-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #8759d6;
    color: #fff;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.slide-content a.download-btn:hover {
    background-color: #6d45c6;
}

.slider-controler {
    margin-top: 1rem;
    text-align: center;
}

.slider-controler .dot {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: var(--dot);
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.dot.active {
    width: 2.7rem;
    background: var(--dot-active);
    transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .slide-content {
        max-width: 90%;
        padding: 1rem;
    }

    .slide-content h2 {
        font-size: 2.4rem;
    }

    .slide-content p {
        font-size: 1.4rem;
    }
}

.slide-content {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideFadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

.slide-content h2 {
    animation: fadeSlideLeft 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.slide-content p {
    animation: fadeSlideLeft 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.slide-content a.download-btn {
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

/* Keyframes */
@keyframes fadeSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add this to your existing CSS */
@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        /* Changed from calc(100vh - 2rem) to auto */
        margin: 0;
        width: 100%;
    }

    .slider-container {
        width: 100%;
        max-width: 100%;
    }

    .slide {
        aspect-ratio: 16/9;
        /* Maintains image proportion */
    }

    .slide img {
        width: 100%;
        height: auto;
        /* Changed from 100% to auto */
        object-fit: contain;
        /* Changed from cover to contain */
    }

    .slide-content {
        top: 15%;
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
}

/* **********************SOCIAL MEDIA  ************************* */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure body and html take full width and height */
body,
html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Styling the section with class .sec-03 */
.sec-03 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 100px;
    color: #fff;
    background-color: #54547c;
    /* Background color */
    background-image: url('img/social.png');
    /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    /* Ensures it does not overflow the page */
}

/* Container class for content inside the section */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

/* Content area */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Styling the media info links */
.media-info {
    list-style-type: none;
    width: 25%;
    /* Adjust width for responsiveness */
}

.media-info li {
    margin-bottom: 15px;
    font-size: 24px;
}

.media-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.media-info a:hover {
    color: #00aaff;
    /* Hover effect */
}

.media-info i {
    margin-right: 40px;
}

/* Video container */
.video-container {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-btn-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Fixed height for video preview */
    background-image: url('img/youtube.png');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    filter: brightness(0.6);
    /* Darkens the overlay image slightly */
}

/* Zoom effect on hover */
.video-play-btn-wrapper:hover {
    transform: scale(1.1);
    /* Zooms the container to 110% of its size */
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.play-button::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 5px;
    /* Adjusts the play icon position */
}

.play-button:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .media-info {
        width: 100%;
        /* Full width on smaller screens */
        margin-bottom: 30px;
    }

    .video-container {
        width: 150%;
        /* Full width on smaller screens */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
        /* Smaller title on very small screens */
        text-align: left;
    }

    .media-info li {
        font-size: 16px;
        /* Smaller text for links */
    }
}

/* Animation class - hidden by default */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When in view, play animation */
.scroll-animate.active {
    animation: fadeUp 0.8s ease forwards;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.image-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.banner-overlay h1 {
    font-size: clamp(5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.typed-text-container {
    min-height: 3.5rem;
    margin-bottom: 1.5rem;
}

#typed-word {
    font-size: clamp(4.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #f9fc4262;
    ;
}

.flip-text-group p {
    font-size: clamp(3rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0.5rem auto;
    opacity: 0;
    transform: rotateX(90deg);
    transform-origin: top;
    animation: flipIn 0.6s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Staggered flip animations */
.flip-text-group p:nth-child(1) {
    animation-delay: 1.2s;
}

.flip-text-group p:nth-child(2) {
    animation-delay: 1.6s;
}

.flip-text-group p:nth-child(3) {
    animation-delay: 2.0s;
}

.apply-btn {
    margin-top: 2rem;
    padding: 12px 30px;
    font-size: 2.1rem;
    font-weight: 600;
    background: #ad0707;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 2.4s;
}

.apply-btn:hover {
    background: #3e8e41;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.apply-btn {
    /* Existing styles... */
    animation:
        fadeInUp 0.5s forwards,
        pulse 1.5s ease-in-out infinite;
    animation-delay:
        2.4s,
        /* Fade in first */
        3s;
    /* Then start pulsing */
    position: relative;
    overflow: hidden;
}

.apply-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    opacity: 0;
    animation: pulse-glow 1.5s ease-in-out infinite;
    animation-delay: 3s;
}

/* Animations */
@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateX(90deg);
    }

    to {
        opacity: 0.9;
        transform: rotateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typed.js cursor */
.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Main pulse animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(76, 175, 80, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
    }
}

/* Inner glow effect */
@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}