/* Basic reset */
* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}


:root {
    --color-primary: #5B8FB9;     /* Medium blue - approachable */
    --color-success: #67B99A;     /* Teal green - fresh */
    --color-warning: #FFC93C;     /* Bright yellow - clear warning */
    --color-danger: #FF6B6B;      /* Coral - modern alert */
    --color-danger-variant: rgba(255, 107, 107, 0.4);
    --color-white: #FFFFFF;
    --color-light: rgba(255, 255, 255, 0.8);
    --color-black: #03071E;       /* Very dark blue - soft on eyes */
    --color-bg: #0F222D;          /* Dark teal-black - modern */
    --color-bg1: #1A3A4A;         /* Dark teal */
    --color-bg2: #245A6B;         /* Medium teal */
    
    --container-width-lg: 76%;
    --container-width-md: 90%;
    --container-width-sm: 94%;
    
    --transition: all 400ms ease;
}



body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    color: var(--color-white);
    background: var(--color-bg);
}


.college a {
    color: inherit; /* Keeps the same text color */
    text-decoration: none; /* Removes the underline */
    display: block; /* Makes the entire area clickable */
    cursor: pointer; /* Shows the hand cursor on hover */
}

.college a:hover {
    text-decoration: underline; /* Optional: adds underline on hover */
}

.container {
    width: var(--container-width-lg);
    margin: 0 auto;
}

section {
    padding: 6rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    color: var(--color-white);
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.btn {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-primary {
    background: var(--color-danger);
    color: var(--color-white);
}

/* Header styles */
/* Header Section Styles */
.header {
    position: relative;
    height: 70vh;
    color: var(--color-white);
    margin-bottom: 4rem;
    background: url('images/your-background-image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    
    overflow: hidden;
}

.header_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 1rem;
}

.header_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.header_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 3rem;
    
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.header_content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header_content p {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        height: 50vh;
    }
    .header_content h1 {
        font-size: 2rem;
    }
    .header_content p {
        font-size: 1rem;
    }
}


/* Why Study MBBS in Bangladesh section styles */
#study-bangladesh {
    background-color: var(--color-bg2);
    color: var(--color-white);
    padding: 7rem 0;
}

#study-bangladesh h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: justify;
}

#study-bangladesh p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}

#study-bangladesh .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    animation: fadeIn 1s ease-out;
}

#study-bangladesh .content {
    flex-basis: 60%;
    max-width: 60%;
    
}

#study-bangladesh .image {
    flex-basis: 35%;
    max-width: 40%;
    position: relative;
}

#study-bangladesh img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#study-bangladesh img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #study-bangladesh .container {
        flex-direction: column;
    }
    
    #study-bangladesh .content,
    #study-bangladesh .image {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    #study-bangladesh h2{
        text-align: center;
    }

    #study-bangladesh p{
        text-align: center;
    }
}



/* Key Facts to Study MBBS in Bangladesh section styles */
#key-facts {
    background-color: var(--color-bg1);
    color: var(--color-white);
    padding: 6rem 0;
}

#key-facts h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#key-facts ul {
    list-style: none;
    padding: 0;
}

#key-facts ul li {
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#key-facts ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary); /* Change this to your desired bullet color */
    font-size: 2rem;
    line-height: 1;
}

#key-facts .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

#key-facts .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#key-facts .image-wrapper {
    flex: 1;
    max-width: 45%;
}

#key-facts .text-wrapper {
    flex: 1;
    max-width: 50%;
    text-align: start;
}

#key-facts img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#key-facts img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    #key-facts h2 {
        font-size: 2rem;
    }

    #key-facts ul li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #key-facts .content-wrapper {
        flex-direction: column;
    }

    #key-facts .image-wrapper {
        margin-bottom: 2rem;
        max-width: 100%;
    }

    #key-facts .text-wrapper {
        max-width: 100%;
        
    }

    #key-facts h2 {
        font-size: 1.8rem;
    }

    #key-facts ul li {
        font-size: 1rem;
    }
}



/* Our Medical Partners in Bangladesh section styles */

#medical-partners {
    background-color: var(--color-bg1);
    color: var(--color-white);
    padding: 4rem 0;
}

#medical-partners h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

#medical-partners p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    text-align: center;
}

#medical-partners .colleges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

#medical-partners .college {
    background-color: var(--color-bg2);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#medical-partners .college:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #medical-partners h2 {
        font-size: 2rem;
    }

    #medical-partners p {
        font-size: 1rem;
    }
}













/* Section Styles */
.sections {
    padding: 50px 20px;
    background-color: var(--color-bg1);
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advantages Section Styles */
.advantages {
    background-color: var(--color-bg2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px 20px;
}

.advantages-title {
    text-align: center;
    font-size: 2.5em;
    color: #e6e6e6;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.advantages-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantage-item {
    flex: 0 1 45%;
    background-color: var(--color-bg2);
    margin-bottom: 10px;
    padding:8px 10px;
    border-radius: 10px;
    display: flex;
    font-size: 15px;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}




/* Responsive Design */
@media (max-width: 768px) {
    .advantage-item {
        flex: 0 1 100%;
    }

    .advantages-title {
        font-size: 2em;
    }
}


