@import "tailwindcss";
:root {
    --primary-blue-hover: #2c69af;
    --primary-blue-dark: #15467a;
    --accent-yellow-dark: #f4b02a;
    --success-green: #198754;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #fcfcfc;
    --text-main: #333333;
    --text-muted: #666666;
    --border-light: #eeeeee;
    --nav-bg-scrolled: rgba(248, 249, 250, 0.8);
    --overlay-color: rgba(0, 0, 0, 0.5);
    --primary-blue: #00529B;
    --accent-yellow: #FFD700;
    --light-green: #4ECDC4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#scrollBtn {
    position: fixed;
    right: 30px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    border: 2px solid transparent;
    z-index: 100;
}

#scrollBtn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(270deg,
            var(--accent-yellow),
            var(--success-green),
            var(--accent-yellow));
    background-size: 400% 400%;
    z-index: -1;
    animation: borderMove 4s linear infinite;
}

#scrollBtn::after {
    content: "";
    position: absolute;
    background: var(--primary-blue);
    width: 53px;
    height: 53px;
    border-radius: 14px;
}

#scrollBtn i {
    z-index: 1;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

#scrollBtn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-navbar {
    background: var(--bg-light);
    padding: 8px 0;
    transition: all 0.4s ease-in-out;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(3px);
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-box img {
    width: 55px;
    border-radius: 50%;
}

.nav-link {
    color: var(--text-main) !important;
    position: relative;
    margin: 0 10px;
    padding-bottom: 5px;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-container {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 8px 20px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu-custom li a:hover {
    color: var(--primary-blue);
}

.dropdown-container:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.apply-btn {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.apply-btn:hover {
    background: var(--primary-blue-hover);
    color: var(--white);
    transform: scale(1.1);
}

.add-event-btn {
    background: var(--accent-yellow);
    color: var(--primary-blue-dark);
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border: none;
}

.add-event-btn:hover {
    background: var(--accent-yellow-dark);
    color: var(--primary-blue-dark);
    transform: scale(1.05);
}

.menu-btn {
    font-size: 28px;
    color: var(--primary-blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.menu-btn:hover {
    transform: scale(1.1);
}

.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-blue);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    padding: 80px 20px 20px;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.side-menu a {
    display: block;
    color: var(--white);
    padding: 16px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: border-left 0.3s ease-in;
}

.side-menu div {
    margin-top: -32px;
}

.side-menu span {
    font-size: 20px;
    color: var(--bg-section);
}

.side-menu a:hover {
    border-left: 3px solid var(--border-light);
}

.side-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
}

.side-menu.open::before {
    opacity: 1;
    visibility: visible;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.1);
}

.mobile-submenu.open {
    max-height: 200px;
}

.mobile-submenu a {
    padding-left: 50px !important;
    font-size: 0.95rem !important;
}

.side-nav-dropdown {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem !important;
}

.side-nav-dropdown.active i.fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s;
}







.hero {
    height: 100vh;
    background: url(3d-skull-partially-buried-sand-against-night-sky.jpg) no-repeat center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    animation: fadeUp 1s ease;
}

.hero-text {
    margin-top: 20px;
    max-width: 600px;
    animation: fadeUp 1.5s ease;
}

.hero-buttons {
    margin-top: 30px;
    animation: fadeUp 2s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 82, 155, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-yellow);
    transform: scale(1.3);
}

.hero-content {
    position: relative;
    z-index: 5;
}

.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--overlay-color);
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-content h1,
.about-content p,
.mission,
.vision {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-wrapper {
    min-height: 420px;
    display: flex;
    align-items: center;
}

.about-section .about-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section .about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section .about-content.visible h1,
.about-section .about-content.visible p:first-of-type,
.about-section .about-content.visible p:last-of-type,
.about-section .about-content.visible .mission,
.about-section .about-content.visible .vision {
    opacity: 1;
    transform: translateY(0);
}

.about-content h1 {
    transition-delay: 100ms;
}

.about-content p:first-of-type {
    transition-delay: 250ms;
}

.about-content p:last-of-type {
    transition-delay: 400ms;
}

.mission {
    transition-delay: 550ms;
}

.vision {
    transition-delay: 700ms;
}

.mission-bar {
    width: 5px;
    background: var(--primary-blue);
    height: 65px;
    display: inline-block;
    border-radius: 3px;
}

.vision-bar {
    width: 5px;
    background: var(--success-green);
    height: 65px;
    display: inline-block;
    border-radius: 3px;
}

.why-choose-us {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.why-choose-us2 {
    background: var(--white);
}

.features-section {
    background-color: var(--bg-section);
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    height: 100%;
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

.feature-card:hover,
.active-card {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-10px);
}

.feature-card:hover h4,
.feature-card:hover p,
.feature-card:hover .feature-icon {
    color: var(--white);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 45px rgba(30, 95, 168, 0.15);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: rgba(30, 95, 168, 0.08);
    color: var(--primary-blue);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: scale(1.12) rotate(8deg);
}

.feature-card h4 {
    color: var(--text-main);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

.feature-card-wrapper {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

#scrollBtn {
    position: fixed;
    right: 30px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    border: 2px solid transparent;
    z-index: 100;
}

#scrollBtn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(270deg,
            var(--accent-yellow),
            var(--success-green),
            var(--accent-yellow));
    background-size: 400% 400%;
    z-index: -1;
    animation: borderMove 4s linear infinite;
}

#scrollBtn::after {
    content: "";
    position: absolute;
    background: var(--primary-blue);
    width: 53px;
    height: 53px;
    border-radius: 14px;
}

#scrollBtn i {
    z-index: 1;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

#scrollBtn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-view-all {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 0 1px 1px var(--text-muted);
}

.btn-view-all:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-4px);
    color: var(--accent-yellow);
    box-shadow: 0 12px 30px rgba(0, 82, 155, 0.35);
}

.news-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 60px;
}

.news-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
    background: var(--white);
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.news-card img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 28px;
}

.news-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.news-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 14px 0 12px;
    color: var(--text-main);
}

.news-description {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 1rem;
}

.news-icon {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-right: 8px;
}

.bv-campus-area {
    padding: 100px 0;
    background: var(--white);
}

.bv-main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.bv-subheading {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 60px;
}

.bv-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.bv-facility-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 320px;
    transition: all 0.4s ease;
}

.bv-facility-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.bv-facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.bv-facility-card:hover img {
    filter: brightness(0.30) saturate(1.7);
    transform: scale(1.1);
}

.bv-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52%;
    background: linear-gradient(transparent, rgba(13, 110, 253, 0.92));
    color: var(--white);
    padding: 35px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bv-facility-card:hover .bv-card-overlay {
    transform: translateY(0);
}

.bv-overlay-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.15s;
}

.bv-facility-card:hover .bv-overlay-inner {
    opacity: 1;
    transform: translateY(0);
}

.bv-feature-icon {
    font-size: 1.65rem;
    margin-bottom: 12px;
    display: inline;
    margin-right: 12px;
}

.bv-feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.bv-feature-text {
    font-size: 0.97rem;
    line-height: 1.55;
    opacity: 0.95;
}

.bv-facility-card {
    opacity: 0;
    transform: translateY(60px);
}

.bv-facility-card.shown {
    opacity: 1;
    transform: translateY(0);
}

.bv-testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.bv-testimonial-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.bv-testimonial-subheading {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 70px;
}

.bv-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.bv-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 35px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
}

.bv-testimonial-card.shown {
    opacity: 1;
    transform: translateY(0);
}

.bv-testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.bv-quote-icon {
    font-size: 4.5rem;
    color: var(--primary-blue);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.bv-testimonial-text {
    font-size: 1.06rem;
    line-height: 1.68;
    color: var(--text-main);
    margin-bottom: 35px;
}

.bv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bv-author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.bv-author-info h5 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-main);
}

.bv-author-info p {
    margin: 0;
    font-size: 0.97rem;
    color: var(--text-muted);
}

.bv-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.bv-cta-buttons a {
    text-decoration: underline;
}

.bv-cta-heading {
    font-size: 2.85rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.bv-cta-text {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.bv-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bv-btn-primary {
    background: var(--success-green);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bv-btn-primary:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.bv-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.85);
    padding: 12px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bv-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.bv-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.bv-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.bv-logo {
    background: var(--primary-blue);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
}

.bv-footer-heading {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.bv-footer-link {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.bv-footer-link:hover {
    color: #60a5fa;
}

.bv-contact-info i {
    width: 20px;
    margin-right: 10px;
}

.bv-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.bv-social-icons a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
}

.bv-end {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-footer-bottom {
    padding-top: 25px;
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
    text-decoration: none;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px !important;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px !important;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .bv-facilities-grid {
        grid-template-columns: 1fr;
    }

    .news-section .row>div {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .custom-navbar .container {
        padding: 0 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .bv-testimonial-card {
        padding: 30px 20px;
    }
}

/* Better mobile menu */
.side-menu {
    padding-top: 100px;
}

/* Improve slider on mobile */
.slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin-bottom: 15px;
        width: 50%;
    }

    .about-image {
        margin-bottom: 50px;
    }
}