.content {
    flex-grow: 1;
    padding: 20px;
    background-color: #f8f9fa;
    overflow-y: scroll;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/



/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
/*.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}*/

/* other page bg */
.bg-breadcrumb {
    max-height: 200px;
/*    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(~/Images/caro0.jpg);*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

    .bg-breadcrumb .breadcrumb-item a {
        color: var(--bs-secondary) !important;
    }



/* Media query for tablets and below (max-width: 768px) */
@media (max-width: 768px) {
    .bg-breadcrumb {
        display: none;
    }

        .bg-breadcrumb .breadcrumb-item a {
            font-size: 14px; /* Adjust font size for better readability */
        }
}

/* Media query for mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .bg-breadcrumb {
        max-height: 300px; /* Further reduce max height for small screens */
        background-size: contain; /* Scale the background to fit smaller screens */
        padding: 100px 0 30px 0; /* Adjust padding for mobile */
    }

        .bg-breadcrumb .breadcrumb-item a {
            font-size: 12px; /* Make breadcrumb text smaller on mobile */
        }
}

/*** Single Page Hero Header End ***/



/*iqra home page csss start*/


/* Whats New Section */
.whats-new-container {
    width: 100%;
    position:relative;
    top:0;
    margin: auto;
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    border-radius: 4px;
    overflow: hidden;
}

.whats-new {
    background-color: #1e3a5f;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 15px;
}

    .whats-new .title {
        padding: 10px 20px;
        color: white;
        font-weight: 600;
        font-size: 1.2em;
        background-color: #1e3a5f;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    .whats-new .notification {
        flex: 1;
        padding: 10px 20px;
        background-color: #fff;
        color: #1e3a5f;
        font-weight: 500;
        font-size: 1em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
    }

        .whats-new .notification a {
            color: #1e3a5f;
            text-decoration: none;
        }


@media(max-width:768px) {
    .whats-new {
        margin-top: 0;
    }
    .whats-new-container {
        position: relative;
        top: 0;
    }
}

.whats-new .notification-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.arrow-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .arrow-buttons i {
        cursor: pointer;
        color: #1e3a5f;
        padding: 5px;
    }
/* Keyframes for notification fade effect */
@keyframes fade-in-out {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}

/* Container */
/*.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}*/

/* Flex Row for Director's Message and About Section */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px;
}

/* Director's Message Section */
.vc-message {
    background-color: #273c75;
    color: white;
    padding: 20px;
    flex: 1;
    min-width: 280px;
    border-radius: 8px;
}

    .vc-message img {
        width: 100%;
        max-width: 150px;
        border-radius: 8px;
        margin: 0 auto 10px;
        display: block;
    }

.vc-title {
    color: #4cd137;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.vc-name {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.vc-content {
    font-size: 0.9em;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 20px;
    flex: 2;
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #273c75;
    text-align: left;
    border-bottom: 2px solid #4cd137;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.about-content {
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}

.read-more {
    color: #4cd137;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #4cd137;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .read-more:hover {
        background-color: #4cd137;
        color: white;
    }

/* Additional Info Section */
.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background-color: #f5f6fa;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .info-card:hover {
        transform: translateY(-5px);
    }

.info-icon {
    font-size: 2em;
    color: #273c75;
    margin-bottom: 10px;
}

.info-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #273c75;
    margin-bottom: 5px;
}

.info-content {
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        margin: 2px;
    }

    .info-section {
        flex-direction: column;
    }
}

/* Container styling */
.why-choose-us {
    background: linear-gradient(to bottom, rgba(19, 53, 123, 0.1), rgba(255, 255, 255, 0.9));
}

.stylish-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #13357B;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.choose-card {
    background: #ffffff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .choose-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .choose-card .icon-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .choose-card h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        margin-top: 1rem;
        color: #13357B;
    }

    .choose-card p {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        color: #555;
    }

@media (max-width: 768px) {
    .choose-card h4 {
        font-size: 1.25rem;
    }

    .choose-card p {
        font-size: 0.95rem;
    }
}

/*    partial view _WhyYs code start*/



/*    partial view _WhyYs code start*/


/* Stylish and Responsive Heading */
.whyus {
    font-size: 2.5em;
    font-weight: bold;
    color: #0044cc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 68, 204, 0.3);
    text-align: center;
}

/* Stylish and Responsive Subheading Paragraph */
.whyusp {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    text-align: center;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    h2 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}

/*what is latest new section*/
.youtube-videos-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 32px;
    color: #003399;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
}

.header h2 {
    font-size: 24px;
    color: #003399;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.video-thumbnail iframe {
    width: 100%;
    height: 200px;
    border-bottom: 2px solid #28a745;
}

.video-info {
    padding: 15px;
    text-align: center;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.video-description {
    font-size: 14px;
    color: #666;
}






/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .gallery .gallery-item img {
        min-height: 300px;
        object-fit: cover;
    }

    .gallery .gallery-item .gallery-content {
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        transition: 0.5s;
    }

        .gallery .gallery-item .gallery-content .gallery-info {
            position: relative;
            margin-bottom: -100%;
            opacity: 0;
            transition: 0.5s;
        }

    .gallery .gallery-item .gallery-plus-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.5s;
        opacity: 0;
    }

    .gallery .gallery-item:hover .gallery-content .gallery-info,
    .gallery .gallery-item:hover .gallery-plus-icon {
        opacity: 1;
        margin: 0;
    }

    .gallery .gallery-item img {
        transition: 0.5s;
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.2);
    }

    .gallery .gallery-item:hover .gallery-content {
        background: rgba(19, 53, 123, 0.8);
    }

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}

    .gallery .tab-class .nav-item a.active {
        background: var(--bs-primary) !important;
    }

        .gallery .tab-class .nav-item a.active span {
            color: var(--bs-white) !important;
        }

/*** Gallery End ***/   

/*iqra home page css end*/

/*** Footer Start ***/
/* Footer Styles */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    position:relative;
    bottom:0;
    margin-bottom:0;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    bottom:0;
}

.footer-section {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}

    .footer-section h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        margin: 5px 0;
    }

    .footer-section .social-icons a {
        margin-right: 10px;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
    }

        .footer-section .social-icons a:hover {
            color: #f1c40f;
        }

    .footer-section iframe {
        border: none;
        border-radius: 5px;
    }

.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #1a252f;
    color: #bbb;
    font-size: 0.9rem;
}

    .footer-bottom a {
        color: #f1c40f;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/



/* Additional Info Section */
.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background-color: #f5f6fa;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .info-card:hover {
        transform: translateY(-5px);
    }

.info-icon {
    font-size: 2em;
    color: #273c75;
    margin-bottom: 10px;
}

.info-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #273c75;
    margin-bottom: 5px;
}

.info-content {
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        margin: 2px;
    }

    .info-section {
        flex-direction: column;
    }
}

/*** Gallery End ***/

/*what is latest new section*/
.youtube-videos-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 32px;
    color: #003399;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
}

.header h2 {
    font-size: 24px;
    color: #003399;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.video-thumbnail iframe {
    width: 100%;
    height: 200px;
    border-bottom: 2px solid #28a745;
}

.video-info {
    padding: 15px;
    text-align: center;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.video-description {
    font-size: 14px;
    color: #666;
}



/* youtubee video description */
.video-description {
    height: 100px; /* Fixed height for all descriptions */
    overflow-y: auto; /* Scrollbar if content overflows */
    font-size: 0.9em;
    line-height: 1.5em;
    padding: 10px;
    box-sizing: border-box;
}
  

/*footer start*/
/* Contact section styling */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 15%;
    right: 15%;
    background-color: #d32f2f;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 70%;
   
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

    .contact-item i {
        font-size: 2rem;
        background-color: #b71c1c;
        padding: 15px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

/* Main footer background */
.footer-background {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
    position: relative;
    bottom: 0;
}

/* Footer links styling */
.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
}

    .footer-links a:hover {
        color: #fff;
    }

/* Admission Enquiry button */
.admission-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ft {
    margin-top: 250px;
}

@media (max-width: 1024px) and (min-width: 768px) {
    .ft {
        margin-top: 300px;
    }
}
@media (max-width: 767px) and (min-width: 480px) {
    .ft {
        margin-top: 300px;
    }
}

@media (min-width: 1367px) {
    .ft {
        margin-top: 400px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .ft {
        margin-top: 300px;
    }
}


/* Responsive adjustments */
/*@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        width: 100%;
        left: 0;
        right: 0;
        position: relative;
        bottom: 0;
        margin-bottom: 0;
    }

    .ft {
        margin-top: 0px;
    }

    .footer-background, .ft {
        position: relative;
        top: 0;
    }

        .footer-background .col-md-4 {
            margin-bottom: 20px;
        }
}*/

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    /* Contact Section Adjustment */
    .contact-section {
        flex-direction: column;
        width: 100%;
        left: 0;
        right: 0;
        position: relative;
        bottom: 0;
        margin-bottom: 0;
    }

    /* Footer Section Overlap */
    .footer-background, .ft {
        position: relative;
        top: 0;
        margin-top: -50px; /* Negative margin to make the footer overlap */
    }

    /* Overlap Footer with the below section */
    .footer-background {
        z-index: 10; /* Ensure it's on top */
    }

        /* Adjusting content in footer for small screens */
        .footer-background .col-md-4 {
            margin-bottom: 20px;
        }

    /* Adjust footer text and elements */
    .ft {
        margin-top: 0px;
        padding-top: 20px; /* Padding adjustment to fit better */
    }

    /* Optional: Add some space below to improve visual balance */
    .contact-section + .footer-background {
        margin-top: -30px; /* Negative margin to overlap slightly */
    }
}

/*newly added*/
/* Footer background style */
.footer-background {
    background-color: #1a1a1a; /* Dark background color */
    color: #fff; /* White text */
    padding: 40px 0; /* Add some padding for spacing */
}

/* Footer links style */
.footer-links li a {
    display: block;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    /* Hover effect for links */
    .footer-links li a:hover {
        color: #f39c12; /* Golden yellow color on hover */
        text-decoration: underline;
    }

/* About Section */
.footer-background .col-md-4 {
    padding: 20px;
}

    .footer-background .col-md-4 h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        border-bottom: 2px solid #f39c12;
        padding-bottom: 10px;
        color:white;
    }

.locationheading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
}
/* Quick Links Section */
.footer-background .col-md-2 {
    padding: 20px;
}

    .footer-background .col-md-2 h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        border-bottom: 2px solid #f39c12;
        padding-bottom: 10px;
    }

/* Map Section */
.footer-background .col-md-6 {
    padding: 20px;
}

    .footer-background .col-md-6 iframe {
        border-radius: 8px;
    }

/* Footer Copyright Section */
.footer-background .text-center {
    padding: 20px 0;
    background-color: #333;
    color: #ddd;
    font-size: 14px;
    font-weight: 300;
}

    .footer-background .text-center p {
        margin-bottom: 0;
    }

/* Small screen adjustments */
@media (max-width: 768px) {
    .footer-background .col-md-6 iframe {
        height: 150px;
    }
}


/*footer end*/

/*for dynamic page*/
.stylish-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #13357B; /* Rich Blue */
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 2px;
}

.decorative-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #1d8cf8, #3358ff);
    border-radius: 2px;
}

.stylish-content {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .stylish-content {
        font-size: 1rem;
    }

    .decorative-line {
        width: 80px;
    }

    .stylish-heading {
        font-size: 1.5rem;
    }
}

/*what is new blink*/
.blinking-link {
    color: #007bff; /* Active link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
    animation: blink 1.5s infinite alternate;
}

    .blinking-link:hover {
        color: #0056b3; /* Darker shade when hovered */
        text-decoration: underline; /* Underline when hovered */
    }

/* Blinking effect animation */
@keyframes blink {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}