html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
}

.top {
    background-color: #212529;
    color: #fff;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    row-gap: 10px;
}

/* Contact Buttons */
.top .contact a {
    font-size: 15px;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    color: #fff !important;
}

.top .contact a:hover {
    transform: scale(1.07);
}

/* Admission Form BTN */
.admission-btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 5px 15px;
    transition: 0.3s ease-in-out;
}

.admission-btn:hover {
    transform: scale(1.08);
}

/* Social Icons */
.social a {
    color: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    font-size: 16px;
}

/* Hover Lift */
.social a:hover {
    transform: translateY(-4px) scale(1.1);
}

/* Social Colors */
.social a.fb {
    background-color: #1877f2;
}

.social a.twitter {
    background-color: #000;
}

.social a.insta {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.social a.linkedin {
    background-color: #0a66c2;
}

.social a.youtube {
    background-color: #ff0000;
}

.social a.whatsapp {
    background-color: #25d366;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

    .contact a,
    .admission-btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    .social a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .top {
        padding: 10px 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

/* ================================
   LOGO SECTION
================================ */

/* Main Wrapper */
.logo {
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inner Container */
.logo .icon {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

/* Logo Image */
.logo .mainlogo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Text Area */
.logo .name {
    padding: 5px 10px;
    line-height: 1.3;
}

/* Title */
.logo .name h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: #293F59;
}

/* Address */
.logo .name p {
    margin: 3px 0 0;
    font-size: 20px;
    color: #293F59;
    font-weight: 500;
}

/* ================================
   RESPONSIVENESS
================================ */

@media (max-width: 768px) {
    .logo .icon {
        gap: 15px;
    }

    .logo .mainlogo {
        height: 65px;
    }

    .logo .name h3 {
        font-size: 22px;
    }

    .logo .name p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .logo .icon {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .logo .mainlogo {
        height: 70px;
    }

    .logo .name h3 {
        font-size: 20px;
    }
}

/* Navbar Background (Based on Logo Colors) */
.navbar {
    background: linear-gradient(90deg, #0056d6, #2C3E50);
    padding: 12px 20px;
    transition: all 0.3s ease;
}

/* Sticky Effect */
.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Logo */
.hospital-logo img {
    height: 80px;
    transition: 0.3s;
}

.navbar.sticky .hospital-logo img {
    height: 70px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: #ffeb3b !important;
}

/* Dropdown */
.dropdown-menu {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
}

.dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    color: #000 !important;
}

.dropdown-item:hover {
    background: #0056d6;
    color: #000 !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 0;
        color: #fff !important;
    }

    .navbar-collapse {
        background: #0056d6;
        padding: 10px;
        border-radius: 8px;
    }

    .navbar-toggler {
        border-color: #fff;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }
}

/* Admission banner */
.admission-banner {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content Centering */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    padding: 0 15px;
}

.hero-content h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h3 {
        font-size: 18px;
    }
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    /* background-image: url('assest/banner/heronew.webp'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Black Overlay */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Adjust darkness here */
    backdrop-filter: blur(2px);
    /* Soft blur effect */
}

/* Centered Text */
.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1.2s ease-out;
    padding: 30px;
}

.hero h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    animation: fadeInUp 2s ease-out;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero {
        height: 80vh;
    }
}

/*Welcome Section */
.welcome {
    width: 100%;
}

.welcome .head {
    font-size: 38px;
    font-weight: 700;
    color: #203A53;
    text-align: center;
    line-height: 1.4;
}

.welcome .head span {
    color: #0B84CF;
    /* Highlighted color */
}

.welcome img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.welcome img:hover {
    transform: scale(1.03);
}

.welcome-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-top: 15px;
    text-align: justify;
}

/* Course Section */
.course {
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 0;
}

/* Overlay */
.course .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 132, 207, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Bring content forward */
.course .container {
    position: relative;
    z-index: 3;
}

/* Title */
.course-title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.course-title span {
    color: #000;
}

/* Course Card */
.course-card {
    background: #ffffffd2;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.course-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

.course-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #0b3c5d;
}

/* ============================= */
/*      RESPONSIVE DESIGN        */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    .course {
        background-attachment: scroll;
    }

    .course-title {
        font-size: 32px;
    }

    .course-card img {
        height: 200px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .course-title {
        font-size: 28px;
    }

    .course-card {
        margin-bottom: 20px;
    }

    .course-card img {
        height: 180px;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .course {
        padding: 40px 0;
    }

    .course-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .course-card {
        padding: 12px;
    }

    .course-card img {
        height: 160px;
    }

    .course-card h5 {
        font-size: 16px;
    }
}

/* Hover Animation */
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Choose Us Section */
/* WHY CHOOSE US */
.choose {
    background: #f8fbff;
}

.choose h1 {
    font-size: 32px;
    font-weight: 700;
    color: #203a53;
}

.choose h1 span {
    color: #0b84cf;
}

.choose .list ul {
    list-style: none;
    margin: 0;
}

.choose .list ul li {
    font-size: 18px;
    background: #ffffff;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #0b84cf;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover Effect */
.choose .list ul li:hover {
    background: #0b84cf;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Keep icon color consistent on hover */
.choose .list ul li:hover i {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 576px) {
    .choose h1 {
        font-size: 26px;
        text-align: center;
    }

    .choose .list ul li {
        font-size: 16px;
        padding: 12px;
    }
}


/*FOoter Section*/
.footer-section {
    background: linear-gradient(90deg, #0056d6, #2C3E50);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-title {
    font-weight: 700;
    font-size: 18px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffde59;
    padding-left: 5px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffde59;
    transform: scale(1.2);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

.map iframe {
    border-radius: 10px;
}

/* This ensures the main page content pushes the footer down */
.main-content {
    flex: 1;
}

/* Copyright Footer Styling */
.copyright-footer {
    background-color: #212529;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
}

.copyright-footer a {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
}

.copyright-footer a:hover {
    text-decoration: underline;
}

/*Mission and Vision Page */
.akims-modern {
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    position: relative;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.akims-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.55);
}

.akims-modern .container {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: auto;
    padding: 0 20px;
}

/* OVERVIEW BOX */
.overview-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
}

.overview-box h1 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #00eaff, #008CFF);
    -webkit-background-clip: text;
    color: transparent;
}

.overview-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* CARDS */
.akims-card {
    background: rgba(255, 255, 255, 0.18);
    padding: 30px;
    border-radius: 16px;
    margin-top: 35px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    position: relative;
}

.akims-card h2 {
    color: #00ffe7;
    font-size: 28px;
    margin-bottom: 10px;
}

.akims-card p,
.akims-card ul li {
    line-height: 1.7;
    font-size: 16.5px;
}

/* TAG LABEL */
.tag {
    background: linear-gradient(90deg, #00f7ff, #008CFF);
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    position: absolute;
    top: -12px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .overview-box h1 {
        font-size: 28px;
    }

    .akims-card h2 {
        font-size: 22px;
    }

    .akims-modern {
        padding: 60px 0;
    }
}

/* Philosophy Page CSS */
.philosophy-section h2 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.philosophy-box {
    transition: 0.4s ease-in-out;
}

.philosophy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Secretery Message */
.secretary-box {
    transition: 0.4s ease;
}

.secretary-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

.secretary-section h2 {
    font-family: 'Poppins', sans-serif;
}

/* First paragraph gets flexible width */
.first-para {
    flex: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .secretary-box {
        text-align: center;
    }

    .first-para {
        margin-top: 12px;
    }
}

.profile-wrapper {
    display: flex;
    align-items: center;
}

.underline-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* logo stays near left section */
    gap: 6px;
}

.underline-logo .line {
    height: 2px;
    width: 80px;
    background: #0d6efd;
    display: inline-block;
}

.underline-logo .center-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Optional: Mobile responsiveness */
@media (max-width: 768px) {
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .underline-logo {
        justify-content: center;
    }
}

/* Why Choose Section */
.choose-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.choose-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.choose-number {
    position: absolute;
    top: -18px;
    left: 20px;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
}

.choose-box h5 {
    margin-top: 20px;
    font-weight: 600;
    color: #032d6b;
}

.choose-box p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Tablet & Mobile Optimization */
@media (max-width: 992px) {
    .choose-box {
        padding: 25px;
    }

    .choose-box h5 {
        font-size: 18px;
    }

    .choose-box p {
        font-size: 15px;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .choose-number {
        top: -14px;
        left: 15px;
        font-size: 13px;
        padding: 6px 12px;
    }

    .choose-box {
        padding: 20px;
        border-radius: 12px;
    }

    .choose-box h5 {
        font-size: 17px;
        line-height: 1.4;
    }

    .choose-box p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .why-choose-us h2 {
        font-size: 26px;
    }

    .why-choose-us p {
        font-size: 15px;
    }
}
/* ===============================
   COURSE HERO SECTION
================================ */
.course-hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)),
        url('assest/banner/course-banner.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
}

.course-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.course-hero p {
    max-width: 720px;
    margin: auto;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Badge */
.badge-custom {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
}


/* ===============================
   COURSE CONTENT AREA
================================ */

.course-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-in-out;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Section Titles */
.section-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 18px;
    position: relative;
    text-align: left;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff5722;
    display: block;
    margin-top: 6px;
    border-radius: 10px;
    align-content: center;
    
}

/* Text */
.course-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.course-card .row div {
    font-size: 0.95rem;
    padding: 8px 0;
    color: #333;
    font-weight: 500;
}

.course-card .row div::before {
    content: "✔";
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

.syllabus li {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed #ccc;
    color: #444;
}

.syllabus li:last-child {
    border-bottom: none;
}

.course-card img {
    border: 3px solid #ff5722;
    padding: 3px;
}

.course-card h6 {
    font-weight: 700;
    margin-bottom: 3px;
}

.course-card small {
    color: #777;
}

@media (max-width: 768px) {
    .course-hero h1 {
        font-size: 1.8rem;
    }

    .course-hero p {
        font-size: 1rem;
    }

    .course-card {
        padding: 22px;
    }
}
/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 20px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
/*Blogs Section*/
.blog-section {
  background: #f8fbff;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
    border: 1px solid #00c6ff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h5 {
  font-weight: 600;
  margin: 10px 0;
}

.blog-date {
  font-size: 13px;
  color: #6c757d;
}

.blog-content p {
  flex-grow: 1;
  font-size: 14px;
  color: #555;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: #0d6efd;
  transition: 0.3s;
}

.read-more:hover {
  color: #084298;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .blog-img img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .blog-img img {
    height: 180px;
  }
}