* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-header {
    width: 100%;
   background: darkorange;
    color: #fff;
    font-size: 15px;
}

.top-header .container {
    max-width: 1600px;
    margin: auto;
    padding: 10px 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-right a {
    color:white;
    text-decoration: none;
    display: flex;
      font-weight: 600;
    align-items: center;
    gap: 8px;
   
    transition: 0.3s;
}

.top-right a:hover {
    color: navy;
}

@media(max-width:768px) {
    .top-header .container {
        justify-content: center;
    }

    .top-right {
        justify-content: center;
        gap: 15px;
    }
}
@media(max-width:480px) {
    .top-header {
        font-size: 13px;
    }

    .top-right {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-right a {
        justify-content: center;
    }
}










.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;

}

.school-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-logo-box a {
    display: block;
    line-height: 0;
}

.school-logo-box img {
    height: 120px;
    width: auto;
    max-width: 100%;
    display: block;
}

.school-info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.school-info-box img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 5px;
}

.school-email {
    margin-top: 8px;
    padding: 8px 18px;
    background: maroon;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    transition: all .3s ease;
    animation: floatMail 2.5s ease-in-out infinite;
}

.school-email a {
    color: #fff;
    text-decoration: none;
}

.school-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, .4);
}

@keyframes floatMail {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width:768px) {
    .school-email {
        font-size: 12px;
        padding: 7px 14px;
        border-radius: 25px;
    }
}

@media (max-width:480px) {

    .school-email {
        font-size: 11px;
        padding: 6px 12px;
        max-width: 95%;
        word-break: break-word;
    }
}


@media (max-width:360px) {

    .school-email {
        font-size: 10px;
        padding: 5px 10px;
    }
}



@media (max-width:992px) {

    .header-container {
        padding: 8px 25px;
        gap: 50px;
    }

    .school-logo-box img {
        height: 75px;
    }

    .school-info-box img {
        height: 50px;
    }
}

@media (max-width:768px) {

    .header-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        padding: 8px 10px;
    }

    .school-logo-box img {
        height: 70px;
    }

    .school-info-box img {
        height: 40px;
    }

}

@media (max-width:480px) {

    .header-container {
        padding: 8px 10px;
        gap: 10px;
    }

    .school-logo-box img {
        height: 50px;
    }

    .school-info-box img {
        height: 35px;
    }
}

@media (max-width:360px) {

    .school-logo-box img {
        height: 45px;
    }

    .school-info-box img {
        height: 30px;
    }


}
































.custom-navbar {
    background: darkorange;
    padding: 10px 10px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, .25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.custom-navbar .container,
.custom-navbar .container-fluid {
    width: 100%;
}

.header-middle-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500;
    padding: 3px 12px !important;
    border-radius: 6px;
    position: relative;
    transition: .3s ease;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.custom-navbar .nav-link:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.custom-navbar .nav-link.active {
    background: rgba(255, 255, 255, .20);
    text-decoration: none !important;
}

.custom-navbar .dropdown-toggle {
    position: relative;
}

.custom-navbar .dropdown-toggle::after {
    display: none;
}

/* DROPDOWN UNDERLINE REMOVE */
.custom-navbar .dropdown-toggle::before {
    display: none !important;
}

.custom-navbar .dropdown {
    position: relative;
}

.custom-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 8px;
    margin-top: 0;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    transition: opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;
    pointer-events: none;
}

.custom-navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-navbar .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 15px;
}

.custom-navbar .dropdown-item {
    position: relative;
    padding: 10px 14px;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    transition: .3s ease;
    text-decoration: none !important;
}

.custom-navbar .dropdown-item:hover {
    background: #ffe4e4;
    color: #dc2626;
    padding-left: 20px;
    text-decoration: none !important;
}


.custom-navbar .dropdown-item::after {
    display: none !important;
}

.custom-navbar .navbar-toggler {
    background: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* MAIN MENU */
.navbar-nav .nav-link {
    position: relative;
    color: #fff !important;
    text-decoration: none;
}


.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link::after {
    display: none !important;
}

.dropdown-menu .dropdown-item::after {
    display: none !important;
}

/* DROPDOWN FIX */
.dropdown-menu {
    border: none;
}

/* DROPDOWN ITEM */
.dropdown-menu .dropdown-item {
    position: relative;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
}

/* IMPORTANT FIX (underline visible properly) */
.dropdown-menu .dropdown-item::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 4px;
    height: 2px;
    width: 0;
    background: #dc2626;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover::after {
    width: 70%;
}

@media (max-width:991px) {

    .custom-navbar {
        padding: 8px;
    }

    .custom-navbar .navbar-toggler {
        width: 40px;
        height: 40px;
        margin-left: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-navbar .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }

    .custom-navbar .navbar-collapse {
        margin-top: 10px;
        background: #dc2626;
        border-radius: 12px;
        padding: 12px;
    }

    .custom-navbar .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .custom-navbar .nav-item {
        width: 100%;
    }

    .custom-navbar .nav-link {
        width: 100%;
        display: block;
        padding: 12px !important;
        font-size: 15px !important;
    }

    .custom-navbar .dropdown-menu {
        position: static;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100%;
        margin-top: 5px;
        background: #fff;
        border-radius: 8px;
        box-shadow: none;
        padding: 6px;
        pointer-events: auto;
    }

    .custom-navbar .dropdown-menu.show {
        display: block;
    }

    .custom-navbar .dropdown-item {
        padding: 10px 12px;
        font-size: 14px;
    }

    .custom-navbar .dropdown::after {
        display: none;
    }
}

@media (max-width:768px) {

    .custom-navbar .nav-link {
        font-size: 14px !important;
    }

    .custom-navbar .dropdown-item {
        font-size: 13px;
    }
}

@media (max-width:480px) {

    .custom-navbar {
        padding: 6px;
    }

    .custom-navbar .navbar-toggler {
        width: 36px;
        height: 36px;
    }

    .custom-navbar .nav-link {
        padding: 10px !important;
        font-size: 13px !important;
    }

    .custom-navbar .dropdown-item {
        font-size: 13px;
        padding: 9px 10px;
    }
}

@media (max-width:320px) {

    .custom-navbar .nav-link {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .custom-navbar .dropdown-item {
        font-size: 12px;
    }
}


.swiper {
    width: 100%;
    height: 450px;
    margin-bottom: 0px;
}

.swiper-slide {
    text-align: center;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    height: 600px;
}

.swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
    opacity: 1;
}









* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
}

.college-showcase {
    padding: 70px 5%;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading span {
    display: block;
    color: #8b0000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 18px;
    color: #666;
}

.showcase-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

}

.card {

    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;

}

.card-header {

    background:rgba(0, 128, 0, 0.712);
    color: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;

}

.card-header i {

    font-size: 22px;

}

.card img {

    width: 100%;
    height: 240px;
    object-fit: cover;

}

.card-body {

    padding: 20px;
    flex: 1;

}

.card-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}

.card-body p {

    line-height: 28px;
    color: #555;

}

iframe {

    display: block;
    border: none;

}

.notice-area {

    height: 430px;
    padding: 15px;
    overflow: hidden;

}
/* =========================
   Notice Area
========================= */

.notice-area {
    height: 430px;
    padding: 15px;
    overflow: hidden;
}

/* Notice Item */

.notice-item {
    background: #f7f7f7;
    padding: 14px;
    margin-bottom: 15px;
    border-left: 5px solid #8b0000;
    border-radius: 6px;
    font-size: 15px;
    line-height: 24px;
    transition: 0.3s;
}

.notice-item:hover {
    background: #fff5e8;
    transform: translateX(5px);
}

/* Footer */

.card-footer {
    padding: 5px 0;
      margin: 0;
    text-align: center;
    border-top: 1px solid #eee;
}



.card-footer .btn{
    margin: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #c59a32;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.btn:hover {
    background: #198754;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
}

.btn:active {
    transform: translateY(0);
}
.card{
    height: auto;
}
.btn:focus {
    outline: none;
}

/* =========================
   Responsive
========================= */

/* Laptop */
@media (max-width:1200px){

    .notice-area{
        height:400px;
    }

}

/* Tablet */
@media (max-width:992px){

    .notice-area{
        height:360px;
        padding:12px;
    }

    .notice-item{
        font-size:14px;
        padding:12px;
        line-height:22px;
    }

    .btn{
        padding:10px 25px;
        font-size:15px;
    }

}

/* Mobile */
@media (max-width:768px){

    .notice-area{
        height:320px;
        padding:10px;
    }

    .notice-item{
        font-size:14px;
        padding:10px;
        margin-bottom:10px;
        line-height:20px;
    }

    .card-footer{
        padding:8px;
    }

    .btn{
        padding:9px 22px;
        font-size:14px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .notice-area{
        height:280px;
    }

    .notice-item{
        font-size:13px;
        padding:8px;
        line-height:18px;
    }

    .btn{
        width:100%;
        padding:10px;
        font-size:14px;
    }

}















/* .notice-item {

    background: #f7f7f7;
    padding: 14px;
    margin-bottom: 15px;
    border-left: 5px solid #8b0000;
    border-radius: 6px;
    font-size: 15px;
    line-height: 24px;
    transition: .3s;

}

.notice-item:hover {

    background: #fff5e8;
    transform: translateX(5px);

}

.card-footer {

    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;

}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #c59a32;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #198754;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus {
    outline: none;
} */

@media(max-width:992px) {

    .showcase-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .notice-area {

        height: 380px;

    }

    iframe {

        height: 450px;

    }

}

@media(max-width:768px) {

    .showcase-grid {

        grid-template-columns: 1fr;

    }

    .section-heading h2 {

        font-size: 26px;

    }

    .section-heading p {

        font-size: 15px;

    }

    .notice-area {

        height: 320px;

    }

    iframe {

        height: 380px;

    }

    .card img {

        height: 220px;

    }

}










.college-footer {

    background: linear-gradient(135deg, #00122E, #001A3D, #000D24);

    color: #fff;

    position: relative;

}

.footer-container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;

    padding: 70px 0;

}

.footer-logo {

    width: 75px;

    margin-bottom: 15px;

}

.footer-box h3 {

    font-size: 25px;

    margin-bottom: 15px;

}

.footer-box h4 {

    font-size: 22px;

    margin-bottom: 20px;

    position: relative;

}

.footer-box h4::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 55px;

    height: 3px;

    background: #f5c542;

}

.footer-box p {

    color: #ddd;

    line-height: 1.8;

    margin-bottom: 12px;

}

.footer-box ul {

    list-style: none;

}

.footer-box ul li {

    margin-bottom: 12px;

}

.footer-box ul li a {

    color: #ddd;

    text-decoration: none;

    transition: .3s;

}

.footer-box ul li a:hover {

    color: #f5c542;

    padding-left: 8px;

}

.footer-box i {

    color: #f5c542;

    margin-right: 10px;

}

.footer-social {

    margin-top: 20px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    margin-right: 10px;

    transition: .4s;

}

.footer-social a:hover {

    background: white;

    color: #4b0013;

    transform: translateY(-5px);

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .15);

    text-align: center;

    padding: 18px;

    background: rgba(0, 0, 128, 0.219);

}

.footer-bottom p {

    color: #ddd;

}

.footer-bottom a {

    color: #f5c542;

    text-decoration: none;

}

.footer-bottom span {

    margin: 0 10px;

}

@media(max-width:992px) {

    .footer-container {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-box h4::after {

        left: 50%;

        transform: translateX(-50%);

    }

    .footer-social {

        justify-content: center;

        display: flex;

    }

}

@media(max-width:480px) {

    .footer-container {

        padding: 50px 20px;

    }

    .footer-box h3 {

        font-size: 22px;

    }

    .footer-box h4 {

        font-size: 20px;

    }

    .footer-bottom p {

        font-size: 14px;

    }

}







.about-banner {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;

    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .08), transparent 18%),
        radial-gradient(circle at 85% 15%, rgba(212, 175, 55, .12), transparent 18%),
        radial-gradient(circle at 20% 85%, rgba(0, 102, 255, .10), transparent 22%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, .05), transparent 20%),
        linear-gradient(135deg, #000814 0%, #001233 40%, #001845 70%, #000814 100%);
}


.about-banner::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);

    background-size: 45px 45px;

    opacity: .35;

    z-index: -2;

}



.about-banner::after {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(212, 175, 55, .15),
            transparent 70%);

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    filter: blur(10px);

    z-index: -1;

}




.about-banner-content {

    max-width: 1100px;

    margin: auto;

}

.about-subtitle {

    display: inline-block;

    color: #D4AF37;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.about-banner-content h1 {

    font-size: 65px;

    color: #fff;

    font-weight: 700;

    margin-bottom: 20px;

    text-shadow: 0 8px 20px rgba(0, 0, 0, .35);

}

.banner-line {

    width: 140px;

    height: 4px;

    margin: 25px auto;

    border-radius: 20px;

    background:
        linear-gradient(90deg,
            transparent,
            #D4AF37,
            #fff,
            #D4AF37,
            transparent);

}

.about-banner-content p {

    max-width: 850px;

    margin: auto;

    color: #e8e8e8;

    font-size: 21px;

    line-height: 1.8;

    letter-spacing: .5px;

}



.circle1,
.circle2,
.circle3 {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    animation: float 8s ease-in-out infinite;

}

.circle1 {

    width: 220px;

    height: 220px;

    background: #D4AF37;

    opacity: .10;

    top: -70px;

    left: -80px;

}

.circle2 {

    width: 260px;

    height: 260px;

    background: #0077ff;

    opacity: .10;

    right: -100px;

    top: 60px;

    animation-delay: 2s;

}

.circle3 {

    width: 180px;

    height: 180px;

    background: #ffffff;

    opacity: .05;

    bottom: -60px;

    left: 45%;

    animation-delay: 4s;

}

@keyframes float {

    0%,
    100% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-30px);

    }

}



@media(max-width:992px) {

    .about-banner {

        padding: 100px 20px;

    }

    .about-banner-content h1 {

        font-size: 48px;

    }

    .about-banner-content p {

        font-size: 18px;

    }

}

@media(max-width:768px) {

    .about-banner {

        padding: 80px 20px;

    }

    .about-banner-content h1 {

        font-size: 38px;

    }

    .about-banner-content p {

        font-size: 16px;

    }

    .about-subtitle {

        font-size: 13px;

        letter-spacing: 3px;

    }

    .banner-line {

        width: 90px;

    }

}

@media(max-width:480px) {

    .about-banner {

        padding: 70px 15px;

    }

    .about-banner-content h1 {

        font-size: 30px;

    }

    .about-banner-content p {

        font-size: 15px;

        line-height: 1.7;

    }

}







.media-section{
    padding:90px 0;
    background:linear-gradient(135deg,#fff7f0,#ffffff,#f4fff4);
    position:relative;
    overflow:hidden;
}

.media-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,140,0,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.media-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(0,128,0,.08);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}



.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:darkorange;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:45px;
    color:#0b2d5c;
    margin:12px 0;
}

.section-heading p{
    color:#666;
    font-size:18px;
}

.section-heading::after{
    content:"";
    width:90px;
    height:4px;
    background:linear-gradient(to right,darkorange,green);
    display:block;
    margin:18px auto 0;
    border-radius:30px;
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}



.media-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
}

.media-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}



.media-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(to right,darkorange,green);
}




.icon-box{
    width:80px;
    height:80px;
    border-radius:50%;
    background:linear-gradient(135deg,darkorange,green);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin:30px auto 20px;
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}


.media-image{
    padding:0 20px;
}

.media-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
    transition:.4s;
}

.media-card:hover img{
    transform:scale(1.05);
}



.media-content{
    padding:25px;
}

.media-content h3{
    color:#0b2d5c;
    font-size:28px;
    margin-bottom:15px;
}

.media-content p{
    color:#666;
    line-height:28px;
    margin-bottom:25px;
}


.media-btn{
    display:inline-block;
    padding:12px 28px;
    background:darkorange;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.media-btn:hover{
    background:green;
    transform:translateX(5px);
}



@media(max-width:992px){

.media-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.media-grid{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:34px;
}

.media-image img{
    height:220px;
}

}

@media(max-width:480px){

.section-heading h2{
    font-size:28px;
}

.media-content h3{
    font-size:22px;
}

.media-btn{
    width:100%;
    text-align:center;
}

}


