* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

*::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

.header {
    min-height: 95vh;
    /* Optimized height for video section */
    /* Increased by 20% from 75vh */
    width: 100%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    z-index: 1;
}

/* Modern gradient overlay for header */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 9, 30, 0.85) 0%, rgba(9, 35, 67, 0.8) 100%);
    z-index: -5;
}

/*The text logo of SANRAKSHAN*/
.text-box .title-logo {
    max-width: 700px;
    width: 100%;
    margin: -120px auto 40px;
    display: block;
}

.text-box p {
    font-family: 'Lucida Calligraphy', cursive;
    font-weight: bold;
    color: black;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
    text-align: center;
    font-size: 24px;
}

.title-logo {
    height: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


.title-logo.shrink {
    width: 200px;
}

/* Zoom-in animation */
@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Video fills entire header */
.header video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

body {
    padding-top: 0;
}

/* Enhanced navigation with smooth transition */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5% 0.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    background-color: rgba(23, 23, 26, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Dark blue translucent background on scroll */
nav.scrolled {
    background-color: rgba(23, 23, 26, 0.95);
    backdrop-filter: blur(2px);
    padding: 0.3% 1%;
}

/* Enhanced logo transition */
.logo-container img {
    transition: transform 0.3s ease;
    width: 300px;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.nav-links {
    margin-right: 90px;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fffefe;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #f44336;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: .5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa {
    display: none;
}

/* Improved text-box with animation */
.text-box {
    width: 90%;
    color: #1f07f7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    margin: 20px 0 40px;
    font-size: 40px;
    color: #051df0;
}

/* Enhanced hero button */
.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #0078D4;
    /* Blue from logo */
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

.hero-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00A651;
    /* Green from logo */
    z-index: -1;
    transition: 0.4s;
    opacity: 0;
}

.hero-btn:hover:before {
    opacity: 1;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.6);
}




@media(max-width: 700px) {
    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #00A651;
        /* Green from logo */
        backdrop-filter: blur(10px);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        right: 0;
    }

    .nav-links.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active ul li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active ul li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active ul li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active ul li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active ul li:nth-child(7) {
        transition-delay: 0.4s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .text-box h1 {
        font-size: 20px;
    }
}

.team {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.team-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.team-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width:700px) {
    .row {
        flex-direction: column;
    }
}

/*---------- know --------*/
.know {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.know.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced section headings */
.know h1,
.events h1,
.facility h1,
.testimonials h1 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.know h1::after,
.events h1::after,
.facility h1::after,
.testimonials h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0078D4;
    /* Blue from logo */
    border-radius: 2px;
}

.know-col {
    flex-basis: 31%;
    background: #f0f8ff;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    position: relative;
}

/* Enhanced cards with hover effects */
.know-col::before,
.facility-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.1);
    /* Solid blue from original gradient start */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.know-col:hover::before,
.facility-col:hover::before {
    opacity: 1;
}

.know-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.facility-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


@media (max-width:700px) {
    .row {
        flex-direction: column;
    }
}

/*---------------- events ----------------*/
.events {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.events.visible {
    opacity: 1;
    transform: translateY(0);
}

.events-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
}

/* Premium Calendar Box - Auto-Scrolling */
.calendar-box {
    flex-basis: 40%;
    background: rgba(230, 244, 255, 0.7);
    /* More transparent for glass effect */
    backdrop-filter: blur(15px) saturate(150%);
    /* Enhanced glass effect */
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Subtle light border */
    border-radius: 20px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    height: 385px;
    /* Reduced by 30% from 550px */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.calendar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00A651;
    /* Green from logo */
    border-radius: 20px 20px 0 0;
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #0078D4;
    /* Blue border */
    padding-bottom: 15px;
    flex-shrink: 0;
}

.calendar-header i {
    font-size: 28px;
    color: #0078D4;
    /* Blue icon */
}

.calendar-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    /* Dark text */
    margin: 0;
}

.calendar-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.calendar-scroll-track {
    animation: calendarAutoScroll 30s linear infinite;
}

.calendar-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes calendarAutoScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
        /* Scroll to halfway (where duplicates start) */
    }
}

.calendar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    /* White background */
    border: 2px solid #0078D4;
    /* Blue outline */
    border-left: 4px solid #0078D4;
    /* Thicker left border */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #00A651;
    /* Green on hover */
    border-left-color: #00A651;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date {
    font-weight: 700;
    color: #0078D4;
    /* Blue text */
    font-size: 13px;
    min-width: 110px;
    letter-spacing: 0.3px;
}

.event-name {
    color: #2c3e50;
    /* Dark text */
    font-size: 14px;
    text-align: right;
    font-weight: 400;
}

.calendar-item.monthly {
    border-left-color: #00A651;
    /* Green for monthly items */
    background: rgba(144, 238, 144, 0.1);
    /* Light green tint */
}

.calendar-item.monthly:hover {
    background: rgba(144, 238, 144, 0.2);
    border-color: #00A651;
}

/* Horizontal Carousel for Tiles - Shows 2 at a time */
.events-tiles {
    flex-basis: 55%;
    height: 385px;
    /* Reduced by 30% from 550px */
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.tiles-track {
    display: flex;
    gap: 25px;
    height: 100%;
    animation: tileCarousel 16s ease-in-out infinite;
}

.tiles-track:hover {
    animation-play-state: paused;
}

@keyframes tileCarousel {
    0%, 8% {
        transform: translateX(0);
        /* Tiles 1 & 2 */
    }
    14%, 22% {
        transform: translateX(calc(-50% - 12.5px));
        /* Tiles 2 & 3 */
    }
    28%, 36% {
        transform: translateX(calc(-100% - 25px));
        /* Tiles 3 & 4 */
    }
    42%, 50% {
        transform: translateX(calc(-150% - 37.5px));
        /* Tiles 4 & 5 */
    }
    57%, 65% {
        transform: translateX(calc(-200% - 50px));
        /* Tiles 5 & 6 */
    }
    71%, 79% {
        transform: translateX(calc(-250% - 62.5px));
        /* Tiles 6 & 7 */
    }
    85%, 93% {
        transform: translateX(calc(-300% - 75px));
        /* Tiles 7 & 8 */
    }
    100% {
        transform: translateX(0);
        /* Back to tiles 1 & 2 */
    }
}

.events-col {
    flex: 0 0 calc(50% - 12.5px);
    /* Each tile takes ~50% minus half the gap */
    min-width: calc(50% - 12.5px);
    height: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.events-col:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.events-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.events-col:hover img {
    transform: scale(1.08);
}

.layer {
    background: rgba(0, 120, 212, 0.85);
    /* Blue from logo */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.events-col:hover .layer {
    opacity: 1;
}

.layer h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .calendar-box,
    .events-tiles {
        flex-basis: 100%;
        width: 100%;
        height: auto;
    }

    .calendar-box {
        max-height: 280px;
        /* Reduced by 30% */
    }

    .events-tiles {
        height: 245px;
        /* Reduced by 30% */
    }

    .events-col {
        flex: 0 0 calc(50% - 12.5px);
        min-width: calc(50% - 12.5px);
    }
}

/*-------------- Facilities ----------------*/
.facility {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.facility.visible {
    opacity: 1;
    transform: translateY(0);
}

.facility-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.facility-col img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.facility-col:hover img {
    transform: scale(1.05);
}

.facility-col p {
    padding: 0;
}

.facility-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/*---------------- testimonials ------------------*/
.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.testimonials.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f8f3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
    transition: all 0.3s ease;
    border-left: 4px solid #f44336;
}

.testimonial-col:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-col img {
    height: 60px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.testimonial-col p {
    padding: 0;
}

.testimonial-col h3 {
    margin-top: 15px;
    text-align: left;
}

.testimonial-col .fa {
    color: #f44336;
}

@media(max-width:700px) {
    .testimonial-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    animation: slide 12s linear infinite;
}

.testimonial-col {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Pause on hover */
.testimonial-viewport:hover .testimonial-track {
    animation-play-state: paused;
}

/* Slide animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(-50%);
    }

    60% {
        transform: translateX(-50%);
    }

    70% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonials h1 {
    text-align: center;
    margin-bottom: 10px;
}

.testimonials p {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

/*-------- Call To Action ----------*/
.cta {
    margin: 100px auto;
    width: 80%;
    background-image: url(images/banner2.jpg);
    background-color: rgba(144, 238, 144, 0.7);
    /* Light green shade */
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(144, 238, 144, 0.5);
    /* Light green glass overlay */
    backdrop-filter: blur(2px);
    z-index: -1;
}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    animation: pulse 2s infinite;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:700px) {
    .cta h1 {
        font-size: 24px;
    }
}

/*--------------Footer---------------*/
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background: #1a252f;
    /* Darker grey background */
    color: #ecf0f1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00A651;
    /* Green accent line */
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color: #fff;
}

.icons .fa {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.icons .fa:hover {
    transform: translateY(-5px);
    background: #f44336;
    color: white;
}

.fa-heart-o {
    color: #f44336;
}

.footer p {
    color: #bdc3c7;
}

/*--------------- About Us Page --------------*/
.sub-header {
    height: 70vh;
    width: 100%;
    background-image: url(images/background.jpg);
    background-color: rgba(4, 9, 30, 0.7);
    /* Solid dark blue from original gradient start */
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header h1 {
    padding-top: 150px;
    margin: 0;
}

.sub-header {
    height: 70vh;
    width: 100%;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

/* Slideshow background */
.sub-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundSlide 15s infinite;
    z-index: -2;
}

/* Gradient overlay like original */
.sub-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7));
    z-index: -1;
}

/* Background slideshow keyframes */
@keyframes backgroundSlide {
    0% {
        background-image: url('images/background.jpg');
    }

    33% {
        background-image: url('images/Wind-Energy.jpg')
    }

    66% {
        background-image: url('images/Solar-Photovoltaics.jpg');
    }

    100% {
        background-image: url('images/banner.png');
    }
}

.sub-header h1 {
    margin-top: 80px;
    margin-bottom: 40px;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col h1 {
    padding-top: 0;
}

.about-col p {
    padding: 15px 0 25px;
}

.hero-btn.red-btn {
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}

.hero-btn.red-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    color: #fff;
}

.hero-btn.red-btn::after {
    background: #f44336;
}

.hero-btn.red-btn::before {
    background: #f44336;
}

.content-image {
    flex-basis: 50%;
}

.about-col img {
    width: 100%;
}

/*---------- Blog Page -------------*/
.blog-content {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.blog-left {
    flex-basis: 65%;
}

.blog-right {
    flex-basis: 32%;
}

.blog-left img {
    width: 100%;
}

.blog-left h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p {
    color: #999;
    padding: 0;
}

.blog-right h3 {
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.comment-box {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3 {
    text-align: left;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}

.comment-form button {
    margin: 10px 0;
}

@media (max-width:700px) {
    .sub-header h1 {
        font-size: 24px;
    }
}

/*------- Contact Us Page ------------*/
.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}

.footer-link {
    text-decoration: none;
    color: #777;
}

/* carousel */
.carousel {
    height: 100vh;
    margin-top: 100px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .author {
    font-weight: bold;
    letter-spacing: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #f1683a;
}

.carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons button {
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}

.carousel .list .item .buttons button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 75px;
    height: 110px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */
.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */
.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}

/* prev click */
.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}

/* ====== Container & Label ===== */
.spt-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: none;
    border-radius: 0;
    width: 100%;
    position: relative;
    z-index: 0;
    background: linear-gradient(90deg, #2c3e50 0%, #4a6ea9 100%);
}

.spt-label {
    background: #1e2b3c; /* Solid opaque color to hide the sliding text behind it */
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 15px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

/* ====== Marquee ===== */
.spt-marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 20px;
    animation: marquee 40s linear infinite;
    position: absolute;
    z-index: 1;
}

.spt-item {
    padding: 0 20px;
    display: inline-block;
}

.spt-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.spt-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f44336;
    transition: width 0.3s ease;
}

.spt-link:hover {
    color: #f44336;
}

.spt-link:hover::after {
    width: 100%;
}

/* ====== Marquee Animation ===== */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.spt-marquee:hover {
    animation-play-state: paused;
}

/*Video Popup */
.video-box {
    display: none;
    position: fixed;
    top: 100px;
    left: 100px;
    width: 504px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.video-box.active {
    transform: scale(1);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #2c3e50, #4a6ea9);
    color: #fff;
    padding: 5px 10px;
    cursor: move;
    border-radius: 12px 12px 0 0;
}

.drag-handle {
    font-size: 14px;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}

.video-box iframe {
    display: block;
    width: 100%;
    height: 270px;
    border: none;
    border-radius: 0 0 12px 12px;
}

/*For Mobile View*/
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav img {
    width: 180px;
    max-width: 40vw;
}

.text-box h1 {
    font-size: clamp(20px, 6vw, 62px);
}

.text-box p {
    font-size: clamp(14px, 4vw, 24px);
}

@media (max-width: 700px) {
    nav img {
        width: 140px;
    }

    .text-box h1 {
        font-size: 24px;
    }

    .text-box p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .facility-col,
    .events-col,
    .know-col,
    .testimonial-col {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .video-box {
        width: 90%;
        left: 5%;
        top: 10%;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}


.video-model {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.video-model.active {
    opacity: 1;
    visibility: visible;
}

.video-container {
    width: 80%;
    max-width: 900px;
    transform: scale(0.9);
    transition: 0.4s;
}

.video-model.active .video-container {
    transform: scale(1);
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Mini Player */
.mini-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 458px;
    height: 252px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 3000;
}

.mini-player iframe {
    width: 100%;
    height: 100%;
}

.mini-close {
    position: absolute;
    top: 6px;
    right: 6px;
    color: #fff;
    cursor: pointer;
}


/*Mobile view configuration*/
/* Fix mobile menu toggle */
@media (max-width: 700px) {
    .nav-links.active {
        right: 0;
        /* This brings the menu into view */
    }

    .nav-links {
        position: fixed;
        background: rgba(0, 0, 0, 0.9);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        transition: 0.5s;
        text-align: left;
        z-index: 1000;
    }

    nav .fa-bars,
    nav .fa-close {
        display: block;
        color: #fff;
        font-size: 24px;
        margin: 10px;
        cursor: pointer;
        z-index: 1001;
    }
}


/*First notice box*/
/* === Notice Popup Styling === */
.notice-box {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notice-box.hidden {
    opacity: 0;
    visibility: hidden;
}

.notice-content {
    position: relative;
    background: #ffffff;
    color: #222;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    animation: slideIn 0.4s ease;
}

.notice-content h2,
.notice-content h3 {
    color: #007bff;
}

.notice-content ul,
.notice-content ol {
    text-align: left;
    padding-left: 20px;
    margin: 8px 0;
}

.notice-content a {
    color: #007bff;
    text-decoration: none;
}

.notice-content a:hover {
    text-decoration: underline;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #007bff;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Make scrollbar subtle */
.notice-content::-webkit-scrollbar {
    width: 6px;
}

.notice-content::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 3px;
}

 

/* Draggable Video Box Styling */
.video-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-box.active {
    opacity: 1;
}

.video-header {
    background: linear-gradient(135deg, #0078D4, #00A651);
    color: white;
    padding: 15px 20px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.close-video {
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #f44336;
    font-size: 28px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-video:hover {
    background: #f44336;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-content {
    padding: 0;
    background: #000;
}

.video-content iframe {
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 700px) {
    .video-box {
        width: 95%;
    }

    .video-content iframe {
        height: 300px;
    }
}

/* Close button positioned outside header */
.close-video-outside {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    border: 3px solid #f44336;
    color: #f44336;
    font-size: 32px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10001;
}

.close-video-outside:hover {
    background: #f44336;
    color: white;
    transform: rotate(90deg) scale(1.2);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.6);
}

/* YouTube Fallback Button */
.youtube-fallback {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
}

.youtube-direct-btn {
    display: inline-block;
    background: #f44336;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

.youtube-direct-btn:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.6);
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================================ */

/* --- TABLET landscape / small desktop (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .logo-container img {
        width: 220px;
    }

    .nav-links {
        margin-right: 30px;
    }

    .nav-links ul li a {
        font-size: 13px;
    }

    .nav-links ul li {
        padding: 8px 8px;
    }

    .text-box .title-logo {
        max-width: 500px;
        margin-top: -80px;
    }

    .text-box p {
        font-size: 20px;
    }

    .know, .facility, .testimonials {
        width: 90%;
    }

    .events {
        width: 95%;
    }

    .cta {
        width: 90%;
        padding: 70px 20px;
    }

    .about-us, .contact-us, .location, .blog-content {
        width: 90%;
    }

    .testimonial-col {
        flex: 0 0 calc(50% - 10px);
    }

    .calendar-header h2 {
        font-size: 20px;
    }
}

/* --- TABLET portrait (max-width: 768px) --- */
@media (max-width: 768px) {
    /* -- Header & Nav -- */
    .logo-container img {
        width: 180px;
    }

    .header {
        min-height: 80vh;
    }

    .text-box .title-logo {
        max-width: 350px;
        margin-top: -60px;
    }

    .text-box p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    /* -- Latest Posts Strip -- */
    .spt-label {
        font-size: 12px;
        padding: 8px 10px;
        letter-spacing: 0.5px;
    }

    .spt-item {
        padding: 0 12px;
        font-size: 13px;
    }

    /* -- Know Us Section -- */
    .know {
        padding-top: 60px;
    }

    .know h1, .events h1, .facility h1, .testimonials h1 {
        font-size: 28px;
    }

    .know-col {
        flex-basis: 100%;
        margin-bottom: 15px;
    }

    /* -- Events Section -- */
    .events {
        padding-top: 40px;
    }

    .events-container {
        flex-direction: column;
        gap: 25px;
    }

    .calendar-box {
        height: auto;
        max-height: 260px;
        padding: 20px;
    }

    .calendar-header h2 {
        font-size: 18px;
    }

    .events-tiles {
        height: 220px;
    }

    .events-col {
        flex: 0 0 calc(50% - 12.5px);
        min-width: calc(50% - 12.5px);
    }

    .layer h3 {
        font-size: 16px;
    }

    /* -- Projects Section -- */
    .facility {
        padding-top: 60px;
    }

    .facility-col {
        flex-basis: 48%;
        margin-bottom: 20px;
    }

    /* -- Testimonials Section -- */
    .testimonials {
        padding-top: 60px;
    }

    .testimonial-col {
        flex: 0 0 80%;
        min-width: 80%;
    }

    .testimonial-col img {
        height: 50px;
    }

    /* -- CTA -- */
    .cta {
        width: 92%;
        padding: 60px 15px;
    }

    .cta h1 {
        font-size: 26px;
    }

    /* -- Sub Header (inner pages) -- */
    .sub-header {
        height: 50vh;
    }

    .sub-header h1 {
        font-size: 28px;
        margin-top: 60px;
        padding-top: 100px;
    }

    /* -- About Page -- */
    .about-us .row {
        flex-direction: column;
    }

    .about-col {
        flex-basis: 100%;
        padding: 15px 0;
    }

    .about-col h1 {
        font-size: 26px;
    }

    .about-col img {
        max-width: 100%;
    }

    /* -- Contact Page -- */
    .contact-us .row {
        flex-direction: column;
    }

    .contact-col {
        flex-basis: 100%;
    }

    /* -- Footer -- */
    .footer {
        padding: 25px 15px;
    }

    .icons .fa {
        margin: 0 8px;
        padding: 12px;
        font-size: 16px;
    }

    /* -- Video Boxes -- */
    .video-box {
        width: 95% !important;
        left: 2.5% !important;
    }

    .close-video-outside {
        top: -10px;
        right: -5px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

/* --- MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
    /* -- Header & Nav -- */
    .logo-container img {
        width: 140px;
    }

    .header {
        min-height: 70vh;
    }

    .text-box .title-logo {
        max-width: 260px;
        margin-top: -40px;
        margin-bottom: 20px;
    }

    .text-box p {
        font-size: 14px;
        margin: 10px 0 20px;
    }

    .hero-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* -- Latest Posts Strip -- */
    .spt-container {
        font-size: 12px;
    }

    .spt-label {
        font-size: 10px;
        padding: 6px 8px;
        letter-spacing: 0;
    }

    .spt-item {
        padding: 0 10px;
        font-size: 12px;
    }

    /* -- Know Us Section -- */
    .know {
        width: 95%;
        padding-top: 40px;
    }

    .know h1, .events h1, .facility h1, .testimonials h1 {
        font-size: 22px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 13px;
        line-height: 20px;
    }

    /* -- Events Section -- */
    .events {
        width: 95%;
        padding-top: 30px;
    }

    .events-tiles {
        height: 180px;
    }

    .events-col {
        flex: 0 0 70%;
        min-width: 70%;
    }

    .calendar-box {
        padding: 15px;
        max-height: 220px;
    }

    .calendar-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .calendar-header h2 {
        font-size: 16px;
    }

    .calendar-header i {
        font-size: 22px;
    }

    .calendar-item {
        padding: 8px 10px;
        margin-bottom: 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .event-date {
        font-size: 11px;
        min-width: auto;
    }

    .event-name {
        font-size: 12px;
        text-align: left;
    }

    .layer h3 {
        font-size: 14px;
    }

    /* -- Projects Section -- */
    .facility {
        width: 95%;
        padding-top: 40px;
    }

    .facility .row {
        flex-direction: column;
    }

    .facility-col {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    /* -- Testimonials -- */
    .testimonials {
        width: 95%;
        padding-top: 40px;
    }

    .testimonial-col {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-col img {
        height: 50px;
        margin: 0 0 10px 0;
    }

    .testimonial-col h3 {
        text-align: center;
    }

    /* -- CTA -- */
    .cta {
        width: 95%;
        padding: 40px 10px;
        margin: 50px auto;
    }

    .cta h1 {
        font-size: 20px;
    }

    /* -- Sub-Header (inner pages) -- */
    .sub-header {
        height: 40vh;
    }

    .sub-header h1 {
        font-size: 22px;
        margin-top: 40px;
        padding-top: 80px;
    }

    /* -- About -- */
    .about-us {
        width: 95%;
        padding-top: 40px;
    }

    .about-col h1 {
        font-size: 22px;
    }

    /* -- Contact -- */
    .contact-us {
        width: 95%;
    }

    .location {
        width: 95%;
        padding: 40px 0;
    }

    .contact-col div .fa {
        font-size: 22px;
        margin-right: 15px;
    }

    .contact-col div h5 {
        font-size: 16px;
    }

    /* -- Footer -- */
    .footer {
        padding: 20px 10px;
    }

    .footer h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .icons .fa {
        margin: 0 6px;
        padding: 10px;
        font-size: 14px;
    }

    /* -- Video boxes -- */
    .close-video-outside {
        top: -8px;
        right: -3px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .video-content iframe {
        height: 220px;
    }
}