  
  /* 
** Main Stylesheet for Ideal Real Estate Consulting Website 
** Created: 2025-03-19
**
** Color Palette:
** Lemon Green (Primary): #ADF802
** Deep Blue (Secondary): #072361
** Navy/Slate Variation: #2F426A
** White: #FFFFFF
** Light Gray: #F5F5F5
** Dark Gray (text): #555555
*/

/* ======= RESET & BASE STYLES ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #072361;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

a {
    color: #072361;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ADF802;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.alt-bg {
    background-color: #F5F5F5;
}

/* ======= BUTTONS ======= */
.cta-button {
    display: inline-block;
    background-color: #ADF802;
    color: #072361;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #c8cac3;
}

.cta-button:hover {
    background-color: transparent;
    color: #ADF802;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #072361;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #072361;
}

.secondary-button:hover {
    background-color: #072361;
    color: #FFFFFF;
}

.learn-more {
    color: #ADF802;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    position: relative;
}

.learn-more:after {
    content: '→';
    display: inline-block;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.learn-more:hover:after {
    transform: translateX(5px);
}

/* ======= HEADER & NAVIGATION ======= */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 90px !important;
    width: auto !important;
    object-fit: contain;
    min-height: 90px;
    max-width: none !important;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0 15px;
}

.main-menu li a {
    color: #072361;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-menu li.active a, 
.main-menu li a:hover {
    color: #ADF802;
}

.main-menu li.active a:after,
.main-menu li a:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ADF802;
    bottom: 0;
    left: 0;
    transform: scaleX(1);
}

.main-menu li a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ADF802;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #072361;
    margin-bottom: 5px;
    display: block;
    transition: all 0.3s ease;
}

/* ======= HERO SECTION ======= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-top: 90px;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 47, 93, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 30px;
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======= SERVICES OVERVIEW ======= */
.services-overview {
    padding: 80px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    color: #ADF802;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* ======= WHY CHOOSE US ======= */
.why-choose-us {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.usp-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.usp-item .icon {
    font-size: 2rem;
    color: #ADF802;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: rgba(164, 211, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* ======= FEATURED PROGRAMS ======= */
.featured-programs {
    padding: 80px 0;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-card h3 {
    margin: 20px 20px 10px;
    font-size: 1.3rem;
}

.program-card .price {
    color: #ADF802;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 20px 10px;
}

.program-card p {
    margin: 0 20px 20px;
    color: #666;
}

.program-card .cta-button {
    margin: 0 20px 20px;
}

.view-all-programs {
    text-align: center;
    margin-top: 40px;
}

/* ======= TESTIMONIALS ======= */
.testimonials {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 2rem;
    color: #ADF802;
    position: absolute;
}

.testimonial-content p:before {
    left: 0;
    top: -10px;
}

.testimonial-content p:after {
    right: 0;
    bottom: -10px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info p {
    color: #666;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.prev-testimonial, .next-testimonial {
    background-color: #FFFFFF;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.prev-testimonial:hover, .next-testimonial:hover {
    background-color: #ADF802;
    color: #FFFFFF;
}

/* ======= CTA SECTION ======= */
.cta-section {
    padding: 80px 0;
    background-color: #072361;
    color: #FFFFFF;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form .cta-button {
    border-radius: 0 5px 5px 0;
}

/* ======= FOOTER ======= */
footer {
    background-color: #072361;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-column h3 {
    color: #FFFFFF;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ADF802;
}

.footer-logo {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo img {
    height: 90px !important; /* Match navigation logo size */
    width: auto;
    object-fit: contain;
    margin: 0 auto 15px;
    min-height: 90px;
    max-width: 100% !important;
    display: block;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: #ADF802;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    margin-top: 5px;
    color: #ADF802;
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ADF802;
    color: #072361;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ======= PAGE BANNER ======= */
.page-banner {
    background-color: #072361;
    color: #FFFFFF;
    padding: 100px 0 50px;
    text-align: center;
    margin-top: 90px;
}

.page-banner h1 {
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ======= ABOUT PAGE STYLES ======= */
.company-intro {
    padding: 80px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 30px;
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.vm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.vm-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.vm-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #ADF802;
}

.vm-card h2 {
    margin-bottom: 20px;
}

.leadership {
    padding: 80px 0;
}

.leader-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.leader-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-info h3 {
    margin-bottom: 10px;
}

.leader-title {
    color: #ADF802;
    font-weight: 600;
    margin-bottom: 20px;
}

.advisory-board {
    margin-top: 50px;
}

.who-we-serve {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-type {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-type .icon {
    font-size: 2.5rem;
    color: #ADF802;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background-color: rgba(164, 211, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* ======= SERVICES PAGE STYLES ======= */
.services-intro {
    padding: 40px 0;
}

.service-detail {
    padding: 80px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-content.reverse .service-info {
    direction: ltr;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-info .icon {
    font-size: 2.5rem;
    color: #ADF802;
    margin-bottom: 20px;
}

.service-features {
    margin: 30px 0;
}

.feature {
    margin-bottom: 15px;
}

.feature h4 {
    color: #072361;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature i {
    color: #ADF802;
    margin-right: 10px;
}

.data-insights {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ADF802;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-weight: 600;
    color: #072361;
}

.inquiry-form {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #072361;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ADF802;
}

/* ======= TRAINING PROGRAMS PAGE STYLES ======= */
.training-intro {
    padding: 40px 0;
}

.program-item {
    padding: 80px 0;
}

.program-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.program-content.reverse {
    grid-template-columns: 1fr 400px;
    direction: rtl;
}

.program-content.reverse .program-details {
    direction: ltr;
}

.program-details h2 {
    margin-bottom: 10px;
}

.program-details .price {
    color: #ADF802;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.program-description {
    margin-bottom: 30px;
}

.program-description h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.enrollment-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

/* ======= SUCCESS STORIES SECTION ======= */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.transformation-showcase {
    margin-top: 40px;
}

.case-study {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.before-after {
    position: relative;
    width: 50%;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    touch-action: none;
}

.before-image, .after-image {
    width: 100%;
    height: 400px;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    background: #ADF802;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.slider-handle i {
    color: #072361;
    font-size: 16px;
}

.label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(7, 35, 97, 0.8);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.before-image .label {
    left: 20px;
}

.after-image .label {
    right: 20px;
}

.case-study-content {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.results {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #072361;
    display: block;
    margin-bottom: 5px;
}

.result-label {
    color: #666;
    font-size: 0.9rem;
}

/* ======= RESOURCES PAGE STYLES ======= */
.resources-intro {
    padding: 40px 0;
}

.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background-color: rgba(164, 211, 55, 0.1);
    color: #ADF802;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: #ADF802;
    font-weight: 600;
    font-size: 14px;
}

.view-all-blogs {
    text-align: center;
    margin-top: 40px;
}

.downloads-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.download-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-icon {
    font-size: 2rem;
    color: #ADF802;
  
  height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: rgba(164, 211, 55, 0.1);
    border-radius: 50%;
    text-align: center;
}

.download-content h3 {
    margin-bottom: 10px;
}

.download-button {
    display: inline-block;
    background-color: #072361;
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #ADF802;
    color: #072361;
}

.download-button i {
    margin-right: 5px;
}

.video-resources {
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(164, 211, 55, 0.9);
    color: #FFFFFF;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background-color: #ADF802;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 20px;
}

.video-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-top: 15px;
}

.view-all-videos {
    text-align: center;
    margin-top: 40px;
}

.market-insights {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.insight-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.insight-header h3 {
    margin-bottom: 0;
}

.quarter {
    background-color: #072361;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.insight-highlights {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.insight-highlights li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.insight-highlights li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #ADF802;
    border-radius: 50%;
}

.newsletter-section {
    padding: 80px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    margin: 30px 0 15px;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form .cta-button {
    border-radius: 0 5px 5px 0;
}

.privacy-note {
    font-size: 14px;
    color: #666;
}

/* ======= CONTACT PAGE STYLES ======= */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form-container p {
    margin-bottom: 30px;
}

.contact-info-container {
    padding: 40px;
    background-color: #072361;
    color: #FFFFFF;
    border-radius: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-info-container h2 {
    color: #FFFFFF;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #ADF802;
}

.contact-text h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    opacity: 0.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-text a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-text a:hover {
    opacity: 1;
    color: #ADF802;
}

.social-connect {
    margin-top: 30px;
}

.social-connect h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.map-section {
    padding: 40px 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    color: #ADF802;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}