* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
/*Header Styles */
body {
    font-family: Arial, sans-serif;
    padding-top: 120px;
    /* space for fixed top strip + navbar */
}

/* ==== TOP STRIP ==== */
.top-banner-strip {
    background-color: #242424;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.top-banner-strip img {
    height: 24px;
}

.buy-btn {
    background-color: #f8670c;
    color: white;
    padding: 6px 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #f8670c;
}

/* ==== NAVBAR ==== */
.navbar {
    position: fixed;
    top: 44px;
    /* Height of top strip */
    width: 100%;
    background-color: #2c3e50;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    height: 30px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -160%;
    background-color: #34495e;
    min-width: 500px;
    display: none;
    flex-direction: column;
    z-index: 1;
    border-radius: 4px;
    overflow-y: auto;
    max-height: 500px;
}

.nav-links li:hover .dropdown {
    display: flex;
}

.dropdown a {
    padding: 10px;
    font-size: 14px;
    color: white;
    transition: background-color 0.3s;
}

.dropdown a:hover {
    background-color: #3498db;
}

.toggle-button {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
    .toggle-button {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #2c3e50;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .dropdown {
        position: static;
        width: 100%;
        border-radius: 0;
        display: none;
    }

    .dropdown.active {
        display: flex;
        flex-direction: column;
    }

    .dropdown a {
        text-align: center;
        padding: 10px 20px;
    }
}

/* Footer Styles */
.footer-icra-unique {
    background: #2c4d66;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left-icra-unique,
.footer-right-icra-unique {
    flex: 1;
    font-size: 14px;
}

.footer-left-icra-unique {
    text-align: center;
}

.social-icons-icra-unique {
    flex: 1;
    text-align: center;
    margin: 10px 0;
}

.footer-right-icra-unique {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-icra-unique a {
    color: #6fa8dc;
    text-decoration: none;
}

.footer-icra-unique a:hover {
    text-decoration: underline;
}

.social-icons-icra-unique a {
    display: inline-block;
    color: #ccc;
    margin: 0 5px;
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icons-icra-unique a:hover {
    color: #fff;
    border-color: #fff;
}

.up-arrow-icra-unique {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 8px;
    color: #ccc;
    transition: all 0.3s ease;
}

.up-arrow-icra-unique:hover {
    color: #fff;
    border-color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-icra-unique {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-left-icra-unique,
    .footer-right-icra-unique {
        flex: auto;
        text-align: center;
    }

    .footer-right-icra-unique {
        justify-content: center;
    }

    .social-icons-icra-unique {
        flex: auto;
    }

    .footer-icra-unique p {
        font-size: 12px;
    }

    .social-icons-icra-unique a,
    .up-arrow-icra-unique {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .footer-icra-unique p {
        font-size: 11px;
    }

    .social-icons-icra-unique a,
    .up-arrow-icra-unique {
        padding: 5px;
        margin: 0 3px;
    }
}

/* home page styles */
.top-banner-strip {
    background-color: #242424;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.top-banner-strip img {
    height: 24px;
}

.buy-btn {
    background-color: #f8670c;
    color: white;
    padding: 6px 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #f8670c;
}

body {
    scroll-behavior: smooth;
}


/* ==== NAVBAR ==== */
.navbar {
    position: fixed;
    top: 50px;
    /* Height of top strip */
    width: 100%;
    background-color: #2c3e50;
    padding: 19px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    height: 30px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -160%;
    background-color: #34495e;
    min-width: 500px;
    display: none;
    flex-direction: column;
    z-index: 1;
    border-radius: 4px;
    overflow-y: auto;
    max-height: 500px;
}

.nav-links li:hover .dropdown {
    display: flex;
}

.dropdown a {
    padding: 10px;
    font-size: 14px;
    color: white;
    transition: background-color 0.3s;
}

.dropdown a:hover {
    background-color: #3498db;
}

.toggle-button {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.cu-section-2025 {
    text-align: center;
    padding: 40px 20px 0 20px;
}

.cu-heading-2025 {
    font-size: 36px;
    color: #8aa8c2;
    font-weight: 300;
}

.cu-heading-2025 span {
    color: #5c87b2;
    font-weight: 600;
}

.cu-subtext-2025 {
    color: #555;
    font-size: 18px;
    margin: 10px 0;
}

.cu-divider-2025 {
    width: 60px;
    height: 2px;
    background: #ccc;
    margin: 10px auto 30px auto;
}

.cu-map-container-2025 {
    width: 100%;
    height: 400px;
}

.cu-map-2025 {
    width: 100%;
    height: 100%;
    border: 0;
}

.cu-form-container-2025 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 20px;
}

.cu-form-left-2025,
.cu-form-right-2025 {
    flex: 1 1 300px;
    max-width: 500px;
    padding: 10px;
    box-sizing: border-box;
}

.cu-input-2025,
.cu-textarea-2025,
.cu-select-2025 {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.cu-submit-btn-2025 {
    background: #2c4d66;
    color: #fff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.section {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
}

#home {
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    /* margin-top:-110px; */
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0;
}


.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-arrows button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-arrows button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 252, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots span.active {
    background: white;
}

#about {
    background-color: #f8f9fa;
    color: #333;
    text-align: left;
    padding: 0px 0;
}

#about h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

#about h1 span {
    color: #3498db;
}

#about .subheading {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: center;
}

#about img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

#about p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

#about ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

#about ul li {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

#about ul li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

#about .read-more {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

#about .read-more:hover {
    text-decoration: underline;
}

#about .read-more::after {
    content: "→";
    margin-left: 5px;
}

#about .testimonial {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1521587760476-6c30a4b0a00f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    margin-top: 50px;
    border-radius: 5px;
    text-align: center;
}

#about .testimonial::before {
    content: '“';
    font-size: 60px;
    color: white;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
}

#about .testimonial p {
    font-size: 18px;
    color: white;
    max-width: 900px;
    margin: 40px auto 20px;
    line-height: 1.5;
}

#about .testimonial .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#about .testimonial .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

#about .testimonial .author span {
    font-size: 16px;
    font-weight: normal;
}

#about .testimonial .author span::after {
    content: " -";
    margin-left: 5px;
}

#gallery {
    background-color: #f8f9fa;
    color: #333;
    padding: 50px 0;
    text-align: center;
}

#gallery h1 {
    font-size: 48px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

#gallery .gallery-grid .image-container {
    position: relative;
    width: 100%;
    height: 200px;
}

#gallery .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

#gallery .gallery-grid .image-container:hover img {
    transform: scale(1.05);
}

#gallery .gallery-grid .image-container .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

#gallery .gallery-grid .image-container:hover .zoom-icon {
    opacity: 1;
}

#gallery .gallery-grid .image-container .zoom-icon svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.blur {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

#course {
    background-color: #f8f9fa;
    color: #333;
    padding: 0px 0;
}

#course h1 {
    font-size: 48px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

#course .course-categories {
    text-align: center;
    margin-bottom: 30px;
}

#course .course-categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#course .course-categories li {
    display: inline-block;
}

#course .course-categories a {
    color: #6c757d;
    text-decoration: none;
    font-size: 18px;
    text-transform: capitalize;
    transition: color 0.3s;
}

#course .course-categories a:hover,
#course .course-categories a.active {
    color: #3498db;
}

#course .course-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#course .course-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#course .course-card .image-container {
    position: relative;
}

#course .course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#course .course-card .hover-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#course .course-card .image-container:hover .hover-icons {
    opacity: 1;
}

#course .course-card .hover-icons span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: white;
    color: #333;
    border-radius: 50%;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

#course .course-card .hover-icons span:hover {
    background: #3498db;
    color: white;
}

#course .course-card .card-body {
    padding: 15px;
}

#course .course-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

#course .course-card p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

#course .course-card .rating {
    color: #f1c40f;
    font-size: 14px;
}

#course .course-card .rating span {
    color: #6c757d;
    margin-left: 5px;
}

#blog {
    background-color: #f8f9fa;
    color: #333;
    padding: 50px 0;
}

#blog .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

#blog .header {
    text-align: center;
    margin-bottom: 80px;
}

#blog .header h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #87CEEB;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

#blog .header p {
    font-size: 1.1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

#blog .blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#blog .blog-post:hover {
    transform: translateY(-5px);
}

#blog .post-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

#blog .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#blog .post-image:hover img {
    transform: scale(1.1);
}

#blog .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(135, 206, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#blog .post-image:hover .image-overlay {
    opacity: 1;
}

#blog .overlay-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#blog .overlay-icon:hover {
    background: white;
    transform: scale(1.1);
}

#blog .overlay-icon:hover svg {
    fill: #87CEEB;
}

#blog .overlay-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

#blog .post-content {
    padding: 30px;
}

#blog .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #87CEEB;
}

#blog .post-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #87CEEB;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#blog .post-excerpt {
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem;
}

#blog .view-all-btn {
    text-align: center;
}

#blog .view-all-btn button {
    background: transparent;
    border: 2px solid #ddd;
    padding: 15px 40px;
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#blog .view-all-btn button:hover {
    border-color: #87CEEB;
    color: #87CEEB;
}

#event {
    background-color: #f8f9fa;
    color: #333;
    padding: 0;
}

#event .event-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

#event .header {
    text-align: center;
    margin-bottom: 80px;
}

#event .header h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #87CEEB;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

#event .header p {
    font-size: 1.1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#event .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

#event .event-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#event .event-post:hover {
    transform: translateY(-5px);
}

#event .post-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

#event .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#event .post-image:hover img {
    transform: scale(1.1);
}

#event .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(135, 206, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#event .post-image:hover .image-overlay {
    opacity: 1;
}

#event .overlay-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#event .overlay-icon:hover {
    background: white;
    transform: scale(1.1);
}

#event .overlay-icon:hover svg {
    fill: #87CEEB;
}

#event .overlay-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

#event .post-content {
    padding: 30px;
}

#event .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #87CEEB;
}

#event .post-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #87CEEB;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#event .post-excerpt {
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem;
}

#event .view-all-btn {
    text-align: center;
}

#event .view-all-btn button {
    background: transparent;
    border: 2px solid #ddd;
    padding: 15px 40px;
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#event .view-all-btn button:hover {
    border-color: #87CEEB;
    color: #87CEEB;
}

.nav-bar {
    background: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.nav-bar a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.nav-bar a.active {
    color: #007bff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    width: calc(33.333% - 13.33px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border: 1px solid #ddd;
}

.card-body {
    padding: 15px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    color: #007bff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-date {
    color: #999;
    font-size: 11px;
    margin-bottom: 10px;
}

.card-desc {
    color: #777;
    font-size: 12px;
    margin-bottom: 10px;
}

.card-footer {
    border-top: 1px solid #eee;
    display: flex;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.card-footer div {
    flex: 1;
    padding: 5px 0;
    line-height: 1.4;
}

.news-section-unique {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.news-heading-unique {
    text-align: center;
    color: #999;
    font-size: 36px;
    margin-bottom: 40px;
}

.news-heading-unique span {
    color: #5c87b2;
}

.news-item-unique {
    display: flex;
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.news-left-unique,
.news-right-unique {
    flex: 1;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.news-img-unique {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content-unique {
    padding: 0 15px;
}

.news-meta-unique {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.news-title-unique {
    font-size: 14px;
    color: #5c87b2;
    margin-bottom: 10px;
}

.news-date-box-unique {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px 5px;
    font-size: 16px;
    color: #666;
    width: 50px;
}

.news-date-box-unique strong {
    display: block;
    font-size: 20px;
    margin-bottom: 2px;
}

.news-readmore-unique {
    color: #5c87b2;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
}

.news-readmore-unique:hover {
    text-decoration: underline;
}

.contact-section-unique {
    text-align: center;
    padding: 40px 20px 0 20px;
}

.contact-heading-unique {
    font-size: 36px;
    color: #8aa8c2;
    font-weight: 300;
}

.contact-heading-unique span {
    color: #5c87b2;
    font-weight: 600;
}

.contact-subtext-unique {
    color: #555;
    font-size: 18px;
    margin: 10px 0;
}

.contact-divider-unique {
    width: 60px;
    height: 2px;
    background: #ccc;
    margin: 10px auto 30px auto;
}

.contact-map-container-unique {
    width: 100%;
    height: 400px;
}

.contact-map-unique {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-unique {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-left-unique {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right-unique {
    flex: 1 1 50%;
}

.contact-input-unique,
.contact-textarea-unique {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-textarea-unique {
    min-height: 210px;
    resize: vertical;
}

.contact-button-container-unique {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.contact-button-unique {
    background-color: #2f4f60;
    color: #fff;
    padding: 10px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.contact-button-unique:hover {
    background-color: #1f3744;
}

.footer-icra-unique {
    background: #2c4d66;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left-icra-unique,
.footer-right-icra-unique {
    flex: 1;
    font-size: 14px;
}

.footer-left-icra-unique {
    text-align: center;
}

.social-icons-icra-unique {
    flex: 1;
    text-align: center;
    margin: 10px 0;
}

.footer-right-icra-unique {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-icra-unique a {
    color: #6fa8dc;
    text-decoration: none;
}

.footer-icra-unique a:hover {
    text-decoration: underline;
}

.social-icons-icra-unique a {
    display: inline-block;
    color: #ccc;
    margin: 0 5px;
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icons-icra-unique a:hover {
    color: #fff;
    border-color: #fff;
}

.up-arrow-icra-unique {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 8px;
    color: #ccc;
    transition: all 0.3s ease;
}

.up-arrow-icra-unique:hover {
    color: #fff;
    border-color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .toggle-button {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2c3e50;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .dropdown {
        position: static;
        background-color: #34495e;
        width: 100%;
        display: none;
        border-radius: 0;
    }

    .dropdown.active {
        display: flex;
        flex-direction: column;
    }

    .dropdown a {
        padding: 10px 20px;
        text-align: center;
    }

    .cu-heading-2025 {
        font-size: 28px;
    }

    .cu-subtext-2025 {
        font-size: 16px;
    }

    .cu-map-container-2025 {
        height: 300px;
    }

    .cu-form-container-2025 {
        flex-direction: column;
    }

    .cu-form-left-2025,
    .cu-form-right-2025 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .carousel-text {
        font-size: 24px;
        padding: 0 20px;
    }

    .carousel-arrows button {
        font-size: 18px;
        padding: 5px;
    }

    #about h1 {
        font-size: 32px;
    }

    #about .subheading {
        font-size: 16px;
    }

    #about p,
    #about ul li {
        font-size: 14px;
    }

    #about .testimonial p {
        font-size: 16px;
        padding: 0 20px;
    }

    #gallery h1 {
        font-size: 32px;
    }

    #gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    #gallery .gallery-grid .image-container {
        height: 150px;
    }

    #course h1 {
        font-size: 32px;
    }

    #course .course-content {
        grid-template-columns: 1fr;
    }

    #course .course-card img {
        height: 150px;
    }

    #blog .header h1,
    #event .header h1 {
        font-size: 2.5rem;
    }

    #blog .blog-grid,
    #event .event-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #blog .blog-container,
    #event .event-container {
        padding: 40px 15px;
    }

    .nav-bar {
        gap: 15px;
        padding: 10px 0;
    }

    .nav-bar a {
        font-size: 12px;
    }

    .card {
        width: 100%;
    }

    .news-item-unique {
        flex-direction: column;
    }

    .news-left-unique,
    .news-right-unique {
        padding: 10px;
        width: 100%;
    }

    .news-img-unique {
        height: 150px;
    }

    .contact-heading-unique {
        font-size: 28px;
    }

    .contact-subtext-unique {
        font-size: 16px;
    }

    .contact-map-container-unique {
        height: 300px;
    }

    .contact-form-unique {
        flex-direction: column;
    }

    .contact-left-unique,
    .contact-right-unique {
        flex: 1 1 100%;
    }

    .footer-icra-unique {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-left-icra-unique,
    .footer-right-icra-unique {
        flex: auto;
        text-align: center;
    }

    .footer-right-icra-unique {
        justify-content: center;
    }

    .social-icons-icra-unique {
        flex: auto;
    }

    .footer-icra-unique p {
        font-size: 12px;
    }

    .social-icons-icra-unique a,
    .up-arrow-icra-unique {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .toggle-button {
        font-size: 20px;
    }

    .carousel-text {
        font-size: 18px;
    }

    .carousel-arrows button {
        font-size: 16px;
        padding: 3px;
    }

    #about h1,
    #gallery h1,
    #course h1 {
        font-size: 24px;
    }

    #about .testimonial p {
        font-size: 14px;
    }

    #blog .header h1,
    #event .header h1 {
        font-size: 2rem;
    }

    .news-heading-unique {
        font-size: 28px;
    }

    .contact-heading-unique {
        font-size: 24px;
    }

    .contact-input-unique,
    .contact-textarea-unique {
        font-size: 12px;
    }

    .contact-button-unique {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer-icra-unique p {
        font-size: 11px;
    }

    .social-icons-icra-unique a,
    .up-arrow-icra-unique {
        padding: 5px;
        margin: 0 3px;
    }
}
/*  custom home page*/
.pagination-wrapper {
    justify-items: anchor-center;
    margin-top: 15px;
}

/** contact card **/

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.contact-card {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 25px 30px;
    flex: 1 1 250px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
