* {
    margin: 0;
    padding: 0;
}

  


/* Navbar Styling */
.navbar {
    background: #ffffff34;
    backdrop-filter: blur(15px);
    padding: 15px;
}

.navbar-brand img {
    height: 50px;
}

.menu-toggle {
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
    display: none !important;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00000061;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.4s ease-in-out;
    z-index: 1000;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .nav-link {
    color: #ffffff !important;
    font-size: 38px !important;
    padding: 12px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu .nav-link:hover {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.487);
    text-decoration: underline;
    text-decoration-color: #0A3B99;
    transition: ease-in .5s;
}

/* Show menu toggle only on mobile */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block !important;
    }

    .navbar-collapse {
        display: none !important;
    }
}

/* Font Style */
.font-normal {
    font-family: "Commissioner", serif !important;
}

.font-style {
    font-family: "DM Serif Text", serif !important;
}

/* Text Sizes */
.text-15 { font-size: 15.6px ; }
.text-17 { font-size: 17.6px ; }
.text-20 { font-size: 20px ; }
.text-24 { font-size: 24px ; }
.text-28 { font-size: 28px ; }
.text-32 { font-size: 32px ; }
.text-36 { font-size: 36px ; }
.text-40 { font-size: 40px ; }
.text-60 { font-size: 60px ; }
.text-64 { font-size: 64px ; }
.text-72 { font-size: 72px ; }
.text-80 { font-size: 80px ; }
.text-130 { font-size: 130px ; }
.text-200 { font-size: 200px ; }

/* Font Weights */
.weight-300 { font-weight: 300 !important; }
.weight-400 { font-weight: 400 !important; }
.weight-500 { font-weight: 500 !important; }
.weight-600 { font-weight: 600 !important; }
.weight-700 { font-weight: 700 !important; }
.weight-800 { font-weight: 800 !important; }

/* Colors */
.blue-color { color: #0A3B99 !important; }
.grey-color { color: #848484 !important; }
.light-grey { color: #C0C0C0 !important; }

/* Background Colors */
.blue-bg { background-color: #0A3B99 !important; }
.grey-bg { background-color: #F0F0F0 !important; }
.section-bg { background: linear-gradient(180deg, #0A3B99 0.71%, #082E76 80%, #031433 100%); }

/* Borders */
.blue-border { border-bottom: 2px solid #00266d !important; }

/* Section Margins */
#first-section { margin-top: 13%; }
#second-section { margin-top: -1%; }
#third-section { margin-top: 5%; }
.fourth-content { margin-top: 15%; }

/* Sixth Section */
#contact-bg {
    background-image: url(./assets/contact/bg.png); /* Changed backslash to forward slash */
    height: auto;
    width: auto;
    border-radius: 20px;
}

#sixth-section { margin-top: 5%; }
#contact-content { margin-top: 50%; }

/* Seventh Section */
#seventh-section { margin-top: 12%; }

/* Footer */
footer { margin-top: 5%; }



/* Growth Section */
.growth-section {
    position: relative;
    width: 100%;
    padding: 50px 20px;
    background-color: #0A3B99 !important;
    text-align: center !important;
}

/* Growth Content Wrapper */
.growth-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    color: white;
}

/* Bootstrap Column Structure */


/* Growth Year - Column Styling */
.growth-year {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px;
    background: #ffffff;
    color: #0A3B99;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    min-height: 300px; /* Ensure it has a defined height */
    width: 100%;
    display: table; /* Makes it behave like a table */
    text-align: center; /* Centers text horizontally */
}
.growth-year:hover{
    scale: 1.1;
    transition: ease-in 0.5s;
}

.growth-year span {
    display: table-cell; /* Makes it behave like a table cell */
    vertical-align: middle; /* Centers content vertically */
}



/* Headings inside columns */
.growth-year h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0A3B99;
}

/* Paragraph inside columns */
.growth-year p {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #0A3B99;
}


/* Media Queries */
@media (max-width: 1024px) {
    .text-15 { font-size: 12px !important; }
    .text-17 { font-size: 13px !important; }
    .text-20 { font-size: 14px !important; }
    .text-24 { font-size: 16px !important; }
    .text-28 { font-size: 18px !important; }
    .text-32 { font-size: 20px !important; }
    .text-36 { font-size: 24px !important; }
    .text-40 { font-size: 26px !important; }
    .text-60 { font-size: 28px !important; }
    .text-64 { font-size: 30px !important; }
    .text-72 { font-size: 45px !important; }
    .text-80 { font-size: 50px !important; }
    .text-130 { font-size: 70px !important; }
    .text-200 { font-size: 100px !important; }
    
    .navbar-brand img { height: 50px; width: auto; }
    #first-section { margin-top: 30%; }
    #contact-bg { width: 100%; }
}

@media (max-width: 768px) {
    .text-15 { font-size: 12px !important; }
    .text-17 { font-size: 13px !important; }
    .text-20 { font-size: 14px !important; }
    .text-24 { font-size: 16px !important; }
    .text-28 { font-size: 18px !important; }
    .text-32 { font-size: 20px !important; }
    .text-36 { font-size: 24px !important; }
    .text-40 { font-size: 26px !important; }
    .text-60 { font-size: 28px !important; }
    .text-64 { font-size: 25px !important; }
    .text-72 { font-size: 45px !important; }
    .text-80 { font-size: 50px !important; }
    .text-130 { font-size: 70px !important; }
    .text-200 { font-size: 100px !important; }
    
    .navbar-brand img { height: 30px !important; width: auto; }
    #first-section { margin-top: 30%; }
    #contact -bg { width: 100%; }
} 