/*
Theme Name: pineridgegc
*/




/* =Reset
-------------------------------------------------------------- */

:root {
    --primary-color: #d19a3b; /* Gold/yellow for buttons */
    --secondary-color: #2b4b7c; /* Blue for buttons */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --dark-bg: #222;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
img{
    max-width: 100%;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b88530;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background-color: #1e365b;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 11px;
    padding: 10px 0;
    letter-spacing: 1px;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header & Hero */
.hero {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.nav-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0;
}

.logo-container {
    background-color: #f4efea;
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.logo-container img {
    max-width: 140px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
}

.main-nav ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav ul li.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.main-nav ul li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    font-weight: 400;
}

.main-nav ul li a:hover {
    color: #fff;
}

.btn-tee-times {
    background-color: #d19a3b;
    border-radius: 6px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
}

.btn-tee-times:hover {
    background-color: #b88530;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 58px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content .subtitle {
    font-size: 26px;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.hero-content .managed-by {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-buttons .btn-secondary {
    background-color: #314088;
    border-radius: 6px;
    padding: 12px 25px;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-buttons .btn-secondary:hover {
    background-color: #212c62;
}

/* Sections Common */
.section-title {
    text-align: center;
    font-size: 32px;
    margin: 50px 0 30px;
    color: #000;
}

/* The Future Section */
.the-future {
    padding-bottom: 60px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px; /* Highly rounded corners */
}

.grid-2 .image-wrapper img {
    height: 320px;
}

.grid-3 .image-wrapper img {
    height: 420px; /* Taller portrait images */
}
.navbar{
    padding-top: 0;
}
.top-nav{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 999;
}
.top-nav .navbar-collapse{
    justify-content: end;
}
.top-nav .navbar-collapse li.nav-item{
    border-right: 1px solid #fff;
}
.top-nav .navbar-collapse li.nav-item:last-child{
    border: none;
    font-family: "Open Sans", sans-serif;
}
.top-nav .navbar-collapse li a.nav-link{
    color: #fff;
    padding: 0 15px; 
    font-size: 15px;
}
.top-nav .navbar-collapse li a.nav-link.active{
    color: #fff;
    background-color: #d29543;
}
.top-nav .navbar-collapse li a.nav-link:hover{
    color:#fff;
    background-color: #d29543;
}
.top-nav .navbar-collapse li.nav-item.dropdown a.show {
    color: #fff;
    background-color: #d29543;
}
.top-nav .navbar-collapse li.nav-item .dropdown-menu{
    background-color: #000;
}
.top-nav .navbar-collapse li.nav-item .dropdown-menu li{
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.top-nav .navbar-collapse li.nav-item .dropdown-menu li:last-child{
    border: none;
}
.top-nav .navbar-collapse li.nav-item .dropdown-menu li a{
    padding: .45rem 1rem;
}




.tee-times{
    padding-left: 15px;
}
.tee-times .btn{
    background-color: #d29543;
    color: #fff;
    font-weight: bold;
}


.image-caption {
    font-size: 11px;
    margin-top: 10px;
    font-style: italic;
    font-weight: 700;
    color: #222;
    margin-left: 5px;
}

.future-text {
    font-size: 13px;
    text-align: left;
    color: #333;
    line-height: 1.6;
}

.future-text p {
    margin-bottom: 12px;
}

/* Golf Academy Section */
.golf-academy {
    margin-bottom: 60px;
}

.academy-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align overlay to bottom */
}

.academy-overlay {
    width: 100%;
    background: rgba(255, 255, 255, 0.75); /* Solid translucent white */
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.academy-overlay h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 400;
}

.btn-learn-more {
    background-color: #314088;
    border-radius: 6px;
    padding: 10px 25px;
    font-size: 13px;
    letter-spacing: 1px;
}
.btn-learn-more:hover {
    background-color: #212c62;
}

/* Footer */
footer {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-logo-box {
    background: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-box img {
    max-width: 170px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.footer-club-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-contact p {
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.footer-contact .book-link {
    display: inline-block;
    margin-top: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 1px;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    color: #000;
    font-size: 20px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
}

.brooke-logo img {
    max-width: 250px;
    margin-bottom: 15px;
}

.brooke-text {
    font-size: 11px;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.brooke-stats {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: 15px;
    color: #333;
}

.footer-bottom {
    border-top: 1px solid #7ea17e;
    padding-top: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer-links li {
    padding: 15px 0;
    width: 380px;
    text-align: center;
}

.footer-links li:not(:last-child) {
    border-bottom: 1px solid #7ea17e;
}

.footer-links li a {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
    font-weight: 400;
}

.green-bullet {
    color: #2b9c33;
    font-size: 14px;
    margin-right: 3px;
}



/* Specific Styles for Reimagine Page */
.reimagine-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.reimagine-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.reimagine-banner .nav-container {
    position: relative;
    z-index: 10;
}

.reimagine-banner-text-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 120px);
    padding: 0 20px;
}

.reimagine-banner h2 {
    color: #fff;
    font-size: 42px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    line-height: 1.2;
}

.reimagine-content {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reimagine-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #222;
}

.reimagine-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.reimagine-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-logo {
    flex: 0 0 200px;
}

.feature-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-text {
    flex: 1;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.feature-text strong {
    font-size: 18px;
    color: #222;
    display: block;
    margin-bottom: 5px;
}

.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.text-center { text-align: center; }

.reimagine-section-caption h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.reimagine-section-caption p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.lists-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.list-col {
    flex: 1;
}

.list-col h5 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: #222;
}

.list-col ul {
    list-style-type: disc;
    padding-left: 20px;
}

.list-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.grid-2 .image-wrapper img {
    height: 350px;
}

.grid-3 .image-wrapper img {
    height: 300px;
}


/* Specific Styles for Reimagine Page */
.reimagine-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.reimagine-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.reimagine-banner .nav-container {
    position: relative;
    z-index: 10;
}

.reimagine-banner-text-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: calc(100% - 120px);
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reimagine-banner h2 {
    color: #fff;
    font-size: 42px;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    line-height: 1.2;
}

.reimagine-content {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.reimagine-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #222;
}

.reimagine-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.reimagine-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-logo {
    flex: 0 0 200px;
}

.feature-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-text {
    flex: 1;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.feature-text strong {
    font-size: 18px;
    color: #222;
    display: block;
    margin-bottom: 5px;
}

.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.text-center { text-align: center; }

.reimagine-section-caption h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.reimagine-section-caption p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.lists-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.list-col {
    flex: 1;
}

.list-col h5 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: #222;
}

.list-col ul {
    list-style-type: disc;
    padding-left: 20px;
}

.list-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.grid-2 .image-wrapper img {
    height: 350px;
}

.grid-3 .image-wrapper img {
    height: 300px;
}

/* Adjust footer padding */
footer {
    border-top: 1px solid #eee;
}

/* Enhancement Section Specific Styles */
.enhancement-caption {
    margin-bottom: 30px;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

.enhancement-caption h4 {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.enhancement-caption p {
    font-size: 13px;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.enhancement-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
}

.enhancement-col {
    flex: 1;
}

.enhancement-col p {
    font-size: 13px;
    color: #000;
    line-height: 1.4;
    margin-bottom: 4px;
}

.enhancement-col h5 {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-top: 15px;
    margin-bottom: 5px;
}

.enhancement-col ul {
    list-style-type: disc;
    padding-left: 18px;
    margin-bottom: 6px;
    margin-top: 2px;
}

.enhancement-col ul li {
    font-size: 13px;
    color: #000;
    margin-bottom: 3px;
    line-height: 1.3;
}

.enhancement-col em {
    font-style: italic;
    display: block;
}

/* Remove default margin on em paragraphs */
.enhancement-col p:has(em) {
    margin-bottom: 2px;
}

.mt-20 { margin-top: 20px; }

/* Intro Section Styles */
.reimagine-intro {
    font-family: Arial, sans-serif;
    color: #000;
    margin-bottom: 40px;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
    text-align: left;
}

.intro-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

.reimagine-intro p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #000;
}

.font-bold {
    font-weight: bold;
}

.academy-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.academy-logo {
    flex: 0 0 120px;
}

.academy-logo img {
    width: 100%;
    object-fit: contain;
}

.academy-text {
    flex: 1;
}

.academy-text p {
    margin-bottom: 0;
}

.reimagine-intro h5 {
    font-size: 13px;
    color: #000;
}

.journey-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    margin-top: -5px;
}

.journey-list li {
    font-size: 13px;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.reimagine-banner-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: normal !important;
    font-size: 42px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6) !important;
    color: #fff !important;
    text-align: left !important;
    line-height: 1.2 !important;
    margin: 0;
}

/* Intro Section Styles */
.reimagine-intro {
    font-family: Arial, sans-serif;
    color: #000;
    margin-bottom: 40px;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
    text-align: left;
}

.intro-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

.reimagine-intro p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #000;
}

.font-bold {
    font-weight: bold;
}

.academy-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.academy-logo {
    flex: 0 0 120px;
}

.academy-logo img {
    width: 100%;
    object-fit: contain;
}

.academy-text {
    flex: 1;
}

.academy-text p {
    margin-bottom: 0;
}

.reimagine-intro h5 {
    font-size: 13px;
    color: #000;
}

.journey-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    margin-top: -5px;
}

.journey-list li {
    font-size: 13px;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.reimagine-banner-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: normal !important;
    font-size: 42px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6) !important;
    color: #fff !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin: 0;
}
/* Corporate Page Styles */
.corp-page-container {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #000;
}

.corp-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #000;
}

.corp-sub-heading {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
}

.corp-profile-block {
    margin-bottom: 60px;
}

.corp-profile-image {
    float: left;
    width: 145px;
    height: auto;
    margin-right: 25px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.corp-profile-desc {
    font-size: 13px;
    line-height: 1.8;
}

.corp-profile-desc p {
    margin-bottom: 15px;
}

.corp-profile-desc p.mb-0 {
    margin-bottom: 0;
}

.corp-image-row-3 {
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
}

.corp-image-row-3 .corp-img-col {
    flex: 1;
}

.corp-image-row-3 .corp-img-col img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: 8px;
}

.corp-image-row-3.small-gap {
    gap: 10px;
    margin-bottom: 40px;
}

.corp-image-row-3.small-gap .corp-img-col img {
    height: 260px;
    margin-bottom: 0;
}

.corp-img-caption {
    font-style: italic;
    font-size: 13px;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #000;
}

.corp-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
}

.corp-section-heading.mb-15 {
    margin-bottom: 10px;
}

.corp-text-section {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.corp-text-section p {
    margin-bottom: 8px;
}

.corp-text-section p.mb-0 {
    margin-bottom: 0;
}

.corp-text-section.mb-40 {
    margin-bottom: 30px;
}

.corp-text-section.mb-50 {
    margin-bottom: 40px;
}

.corp-bullet-list {
    padding-left: 20px;
    margin-bottom: 8px;
    list-style-type: disc;
}

.corp-bullet-list li {
    margin-bottom: 2px;
    line-height: 1.5;
}

.corp-image-row-2 {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.corp-image-row-2 .corp-img-col {
    flex: 1;
}

.corp-image-row-2 .corp-img-col img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.corp-info-box {
    background-color: #f7f6f1;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.corp-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: normal;
    color: #000;
}

.corp-info-subtitle {
    font-size: 14px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    margin-bottom: 50px;
    letter-spacing: 0px;
    color: #000;
}

.corp-info-grid {
    display: flex;
    text-align: left;
    justify-content: center;
    font-size: 13px;
    line-height: 1.6;
}

.corp-info-col {
    width: 45%;
    padding: 0 40px;
}

.corp-info-col.right-col {
    border-left: 1px solid #000;
}

.corp-info-heading {
    display: inline-block;
    margin-bottom: 8px;
    color: #000;
}

.corp-info-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.corp-info-list li {
    margin-bottom: 5px;
}

.corp-info-list.mb-0 {
    margin-bottom: 0;
}

/* Corporate Header Styles */
.corp-header {
    height: auto;
    min-height: 100px;
    background-color: transparent;
    padding-bottom: 20px;
}

.corp-header::before {
    display: none;
}

.corp-header .main-nav ul li a {
    color: #333;
}

.corp-header .main-nav ul li a:hover {
    color: #000;
}

.corp-header .main-nav ul li.separator {
    color: #ccc;
}

.hero2{
    position: absolute;
    width: 100%;
    z-index: 999;
}
.banner-content{
    padding: 240px 0 130px;
    color: #fff;
  background-size: cover;
  background-position: center bottom;
  color: #fff;
}
.banner-content h1{
    color: #fff;
}
.banner-content p{
    color: #fff;
}

.custom-row{
    display: flex;
  gap: 15px;
  width: 100%;
  margin-top: 30px;
}
.custom-cil{
    flex-basis: 33%;
}




@media only screen and (max-width: 991px) {
    .container{
        max-width: 840px;
      }
    .logo-container{
        max-width: 120px;
    }
     .logo-container {
        max-width: 160px;
        padding: 0 15px;
      }
    .navbar-light .top-nav .navbar-toggler{
        background-color: #d29543;
        color: #fff;
    }
    .top-nav .navbar-collapse{
        position: absolute;
        right: 0;
        top: 95px;
        background-color: #000;
        min-width: 300px;
        padding-bottom: 10px;
    }
    .top-nav .navbar-collapse li a.nav-link{
        padding: 10px;
    }
    .footer-right{
        max-width: 360px;
    }
    .logo-container a{
        padding: 0;
        margin: 0;
    }
    .corp-page-container{
        padding-left: 15px;
        padding-right: 15px;
    }
    
    
}
@media only screen and (max-width: 767px) {
    .hero-content h1{
        font-size: 45px;
    }
    .hero-content .subtitle{
        font-size: 22px;
    }
    .hero-content .managed-by{
        font-size: 18px;
    }
    .grid-2{
        grid-template-columns:1fr;
    }
    .grid-3{
        grid-template-columns:1fr;
    }
    .academy-overlay h3{
        font-size: 34px;
    }
    .footer-top{
        flex-direction: column;
    }
    .footer-left{
        margin-bottom: 20px;
    }
     .logo-container {
        max-width: 140px;
        padding: 0 5px;
      }
    .logo-container img {
          max-width: 100%;
          display: block;
        }
    .corp-image-row-3, .corp-image-row-2{
        flex-direction: column;
    }
    .corp-info-box{
        padding: 30px 15px;
    }
    .corp-info-col{
        padding:15px 0;
        width: 100%;
    }
    .corp-info-grid{
        flex-direction: column;
    }
    .corp-info-col.right-col{
        border-top: 1px solid #000;
        border-left: 0px solid #000;
    }
    .enhancement-columns{
        flex-direction: column;
    }
    .custom-row{
        flex-direction: column;
    }
    
    
}


