﻿.headerrow a {
    text-decoration: none;
}

.headerrow a:hover {
    text-decoration: underline;
}
.topmenucontent a {
    text-decoration: none;
}
.topmenucontent a:hover {
    text-decoration: underline;
}
.mainmenucontainer_in a {
    text-decoration: none;
}
.mainmenucontainer_in a:hover{
     text-decoration: underline;
}
.homepage {
  margin: 0;
  padding: 20px 20px 0 20px;
}
.homepage .headerrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.homepage .headerrow .logocontainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.homepage .headerrow .logocontainer:hover {
  text-decoration: none;
}
.homepage .headerrow .logocontainer .logobox {
  margin-right: 12px;
}
.homepage .headerrow .logocontainer .logoboxtxt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.homepage .headerrow .logocontainer .logoboxtxt h1 {
  font-size: 30px;
  font-weight: 700;
  color: #0a1c44;
  margin: 0;
  padding: 0;
  margin-top: 12px;
}
.homepage .headerrow .logocontainer .logoboxtxt h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #0a1c44;
  margin: 0;
  padding: 0;
  margin-top: -1px;
}
.homepage .headerrow .topmenucontainer {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  grid-gap: 10px;
}
.homepage .headerrow .topmenucontainer .topmenucontent {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  margin-top: 5px;
  margin-right:10px;
}
.homepage .headerrow .topmenucontainer .topmenucontent a {
  font-weight: 700;
  text-transform: uppercase;
  color: #0a1c44;
  font-size:14px;
}
.homepage .headerrow .topmenucontainer .searchbox {
  margin-top: 1px;
}
.homepage .headerrow .topmenucontainer .searchbox input {
  font-family: "Helvetica", FontAwesome, sans-serif;
  border: solid 1px #091d42;
  border-radius: 6px;
  background-color: transparent;
}
.homepage .headerrow .topmenucontainer .searchbox input::placeholder {
  color: #0a1c44;
  opacity: 1;
}
.homepage .headerrow .topmenucontainer .burrightlogo_isb {
  position: relative;
  width: 79px;
  height: 67px;
}
.homepage .headerrow .topmenucontainer .burrightlogo_isb .burightlogo {
  position: absolute;
  top: -40px;
  left: -8px;
}
.homepage .headerrow .topmenucontainer .burrightlogo_lhr {
  position: relative;
  width: 45px;
  height: 87px;
}
.homepage .headerrow .topmenucontainer .burrightlogo_lhr .burightlogo {
  position: absolute;
  top: -40px;
  left: -8px;
}
.homepage .headerrow .topmenucontainer .burrightlogo_khi {
  position: relative;
  width: 93px;
  height: 68px;
}
.homepage .headerrow .topmenucontainer .burrightlogo_khi .burightlogo {
  position: absolute;
  top: -40px;
  left: -8px;
}
.homepage .mainmenucontainer {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.homepage .mainmenucontainer .mainmenucontainer_in {
  width: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.homepage .mainmenucontainer .mainmenucontainer_in a {
  text-transform: uppercase;
  color: #0a1b46;
  font-weight: 800;
  font-size: 20px;
}
.homepage .main_image {
  margin-top: 20px;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
}
.homepage .mainstripcontainer {
  position: absolute;
  top: 75%;
  left: 0;
}
.homepage .mainstripcontainer .mainstripbg {
  background-color: #0a1c44;
  padding: 1px 10px;
  width: 450px;
}
.homepage .mainstripcontainer .mainstripbg h2 {
  color: #ba9d57;
  font-weight: 700;
  font-size: 18px;
}
    .homepage .mainstripcontainer .mainstripbg p {
        color: white;
        font-size: 12px;
        margin: -10px 0 0px;
    }
.homepage .mainstripcontainer .mainstripbg a.read_more {
  text-transform: uppercase;
  color: #ba9d57;
  cursor: pointer;
  display: block;
  font-weight: 500;
  font-size: 12px;
}
.homepage .mainstripcontainer .mainstripbadge {
  text-transform: uppercase;
  color: #e2cba2;
  font-size: 46px;
  font-weight: 700;
}

/* Responsive styles */

@media (max-width: 768px) {
    .homepage {
        padding: 10px 15px 0 15px;
    }

        /* Header row: stack logo and top menu vertically */
        .homepage .headerrow {
            flex-direction: column;
            align-items: center;
        }

            /* Logo container center align, reduce margin */
            .homepage .headerrow .logocontainer {
                margin-left: 0;
                margin-bottom: 10px;
                justify-content: center;
            }

            /* Top menu container: stack items vertically, center align */
            .homepage .headerrow .topmenucontainer {
                margin-top: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }

                .homepage .headerrow .topmenucontainer .topmenucontent {
                    flex-wrap: wrap;
                    justify-content: center;
                    margin-top: 5px;
                    gap: 6px;
                }

                    .homepage .headerrow .topmenucontainer .topmenucontent a {
                        font-size: 14px;
                    }

                .homepage .headerrow .topmenucontainer .searchbox {
                    margin-top: 5px;
                }

                /* Right logos position adjust */
                .homepage .headerrow .topmenucontainer .burrightlogo_isb,
                .homepage .headerrow .topmenucontainer .burrightlogo_lhr,
                .homepage .headerrow .topmenucontainer .burrightlogo_khi {
                    position: static;
                    width: auto;
                    height: auto;
                    margin-left: 10px;
                }

                .homepage .headerrow .topmenucontainer .burightlogo {
                    display:none;
                    position: static;
                    top: auto;
                    left: auto;
                }

        /* Main menu container: relative for hamburger */
        .homepage .mainmenucontainer {
            margin: 15px 0 0 0;
            width: 100%;
            align-items: flex-start;
        }

            /* Hamburger button styles */
            .homepage .mainmenucontainer .hamburger-campus {
                display: block;
                font-size: 26px;
                background: none;
                border: none;
                color: #0a1b46;
                cursor: pointer;
                padding: 5px 15px;
                user-select: none;
            }

            /* Hide main menu links by default on mobile */
            .homepage .mainmenucontainer .mainmenucontainer_in {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #f8f8f8;
                padding: 10px 0;
                border-radius: 4px;
            }

            /* Show menu when active */
            .homepage .mainmenucontainer.active .mainmenucontainer_in {
                display: flex;
            }

            .homepage .mainmenucontainer .mainmenucontainer_in a {
                font-size: 16px;
                padding: 8px 20px;
                border-bottom: 1px solid #ccc;
                width: 100%;
                box-sizing: border-box;
            }

                .homepage .mainmenucontainer .mainmenucontainer_in a:last-child {
                    border-bottom: none;
                }

    @media (max-width: 768px) {
        .homepage .main_image {
            background-image: none !important; /* Remove banner bg */
            height: auto; /* let height adapt to content */
            min-height: unset;
        }

        .homepage .main_image_content {
            padding: 15px 20px;
        }
    }
    /* Hide banner bg but show welcome message on mobile */
    @media (max-width: 768px) {
        .homepage .main_image {
            background-image: none !important;
            height: auto;
            min-height: unset;
        }

        .homepage .main_image_content {
            padding: 15px 20px;
        }

        .homepage .mainstripcontainer .mainstripbg h2 {
            font-size: 16px;
        }

        .homepage .mainstripcontainer .mainstripbg p {
            font-size: 14px;
        }

        .homepage .mainstripcontainer .mainstripbg a.read_more {
            font-size: 14px;
        }
    }

    /* Remove underline from menu links, underline only on hover */
    .homepage .headerrow .topmenucontainer .topmenucontent a,
    .homepage .mainmenucontainer .mainmenucontainer_in a {
        text-decoration: none;
        transition: text-decoration 0.3s ease;
    }

        .homepage .headerrow .topmenucontainer .topmenucontent a:hover,
        .homepage .mainmenucontainer .mainmenucontainer_in a:hover {
            text-decoration: underline;
        }

        /* Adjust mainstripcontainer position on mobile */
        .homepage .mainstripcontainer {
            position: static;
            margin-top: 15px;
            width: 100%;
        }

            .homepage .mainstripcontainer .mainstripbg {
                width: 100%;
                padding: 10px;
                box-sizing: border-box;
            }
}

@media (min-width: 769px) {
    /* Hide hamburger on desktop */
    .homepage .mainmenucontainer .hamburger-campus {
        display: none;
    }
}

            
.dg_message_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dg_message_page .dg_image_heading h2 {
    color: #0a1b46;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
}
.dg_message_page .dg_image_heading .dash1 {
    color: #ba9d59;
    font-weight: 700;
    font-size:16px;
}
    .dg_message_page .dg_image_heading .dash2 {
        color: #0a1c44;
        font-weight: 700;
        font-size: 16px;
    }
.dg_message_page .dg-text-box-container {
    margin-top: 10px;
    border: dashed 4px #bb9e59;
    border-left: none;
    border-right: none;
}
.dg_message_page .dg-text-box-container .dg-text-box {
    background-color: #0a1c44;
    color: #fff;
    text-align: center;
    padding: 10px 40px;
    font-size: 16px;
    margin: 2px 0;
}
.qa-mission-vission p {
    text-align: center;
    font-size: 19px;
    font-family: Arial, sans-serif;
}
.qa-mission-vission {
    border-bottom: 1px dashed;
}
.bist-mission-vission p {
    text-align: justify;
    font-size: 19px;
    font-family: Arial, sans-serif;
}
.bist-mission-vission {
    border-bottom: 1px dashed;
}
.services-mission-vission p {
    text-align: justify;
    font-size: 19px;
    font-family: Arial, sans-serif;
}
.services-mission-vission ul {
    text-align: justify;
    font-size: 19px;
    font-family: Arial, sans-serif;
}
.oric-mission-vission p {
    text-align: justify;
    font-size: 19px;
    font-family: Arial, sans-serif;
}

.oric-mission-vission ul {
    text-align: justify;
    font-size: 19px;
    font-family: Arial, sans-serif;
}
.research-centers-para p {
    text-align: center;
    font-size: 19px;
    font-family: Arial, sans-serif;
}

.learn_more_btn {
    background: url("images/campus/learn_more_btn.jpg") no-repeat center center;
    background-size: cover;
    width: 105px;
    height: 31px;
    display: block;
    cursor: pointer;
}

.content_container .on_campus_page {
  margin-top: 80px;
}
.content_container .news_events_page {
  margin-top: 80px;
}

.admissions-header {
    text-align: center;
    background-color: white;
}

    .admissions-header h2 {
        font-weight: bold;
        font-size: 2.5rem;
        color: #0d1a42;
    }

    .admissions-header p {
        font-size: 1.1rem;
        color: #0d1a42;
        margin: 0;
    }

.admissions-section {
    background-size: cover;
    height: 500px;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.admissions-row {
    width: 100%;
}

.admission-option {
    border: 1px solid white;
    padding: 10px 0px;
    margin: 0px;
    border-radius: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.356);
}

.admission_info_box {
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
}

.admission-option .icon {
    font-size: 2rem;
    background: white;
    color: #0d1a42;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission-option h5 {
    font-weight: bold;
    color: white;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .admission-option {
        margin-bottom: 20px;
    }

    .admissions-section {
        height: auto;
        padding-top: 30px;
    }
}

.admissions_page_bg_container {
    height: 450px;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.admission_info_boxes {
    padding-bottom: 40px; 
}

.admission_info_box {
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    border-bottom: none;
    padding: 25px 0;
    position: relative;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

    .admission_info_box a {
        color: #fff;
        text-decoration: none;
    }

        .admission_info_box a:hover {
            text-decoration: underline;
        }

/*.university_cap {
    background: #fff;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #0a1c44;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
}*/


.academics_page_bg_container {
    height: 450px;
    max-width: 1300px; 
    width: 100%; 
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    padding-top: 160px;
    padding-left: 15px;
    padding-right: 15px;
}


.academic_links_wrapper {
    width: 100%;
}

.academic_links_row {
    width: 100%;
    margin: 0 auto;
}

.academic_icon_box {
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 10px;
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
    text-decoration: none;
    border-right: dashed 1px #0a1c44;
}

    .academic_icon_box:hover {
        transform: scale(1.05);
        text-decoration: none;
    }

    .academic_icon_box h2 {
        text-transform: uppercase;
        color: #0a1c44;
        font-weight: 900;
        font-size: 16px;
        margin: 0;
    }

@media (max-width: 768px) {
    .academics_page_bg_container {
        height: auto;
        padding: 40px 0 20px 0;
        align-items: flex-start;
    }

    .academic_icon_box h2 {
        font-size: 14px;
    }
}

/*ORIC WEBSITE STYLING STARTS FROM HERE*/
/*ORIC WEBSITE STYLING STARTS FROM HERE*/
/*ORIC WEBSITE STYLING STARTS FROM HERE*/


.research-innovation-section {
    position: relative;
    background: url('/Content/images/oric/research_bg_img.png') center center/cover no-repeat;
    width: 100%;
    height: 450px; /* full visible height like your image */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.research-overlay {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.research-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: rgba(0, 0, 0, 0.3); /* slight overlay on image */
    border-right: 6px solid white;
    text-align: center;
    padding: 0px 0px;
    transition: background 0.3s ease;
}

.research-item:last-child {
    border-right: none; /* remove last divider */
}

    .research-item h3 {
        margin: 0;
        background-color: #ba9d59; /* golden bar */
        color: #0a1c44;
        padding: 8px 0;
        width: 100%;
        font-size: 18px;
        font-weight: 900;
    }

    .research-item p {
        margin: 10px 0 5px;
        font-size: 13px;
        color: #0a1c44;
        font-weight: 700;
    }

.learn-more {
    color: white;
    background-color: #0a1c44;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 15px;
}

.research-item:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .research-innovation-section {
        height: auto;
    }

    .research-overlay {
        flex-wrap: wrap;
    }

    .research-item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 2px solid white;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .research-item {
        flex: 1 1 100%;
        height: 180px;
    }
}

