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

:root {
    --primary-blue: #0066FF;
    --dark-navy: #0A1F3D;
    --light-gray: #F5F7FA;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --yellow: #FFD700;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: none;
    overflow-x: hidden;
}

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

.navbar {
    background:
        linear-gradient(to right,
            rgba(6, 40, 61, 1) 0%,
            rgba(5, 40, 69, 0.87) 40%,
            rgba(0, 40, 101, 0.32) 100%),
        url('/landing-assets/images/hero-bg.jpg') top/cover no-repeat;
    padding: 16px 0;
    backdrop-filter: blur(50px) !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links li.dropdown {
    position: relative;
    /* needed for absolute positioning of dropdown */
}

/* Dropdown menu */
.nav-links li .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    /* right below the parent li */
    left: 0;
    background: rgba(10, 31, 61, 0.95);
    /* semi-transparent dark, matching navbar */
    backdrop-filter: blur(8px);
    /* same blur as navbar */
    min-width: 180px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    flex-direction: column;
    padding: 8px 0;
}

/* Dropdown items */
.nav-links li .dropdown-content li a {
    color: var(--white);
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

/* Hover effect for dropdown items */
.nav-links li .dropdown-content li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
}

/* Show dropdown on hover */
.nav-links li.dropdown:hover .dropdown-content {
    display: flex;
    /* flex column */
}

/* Arrow next to dropdown */
.dropbtn .arrow {
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--white);
    /* downward pointing arrow */
    transition: transform 0.3s;
}

/* Rotate arrow when dropdown is hovered */
.nav-links li.dropdown:hover .dropbtn .arrow {
    transform: rotate(180deg);
    /* optional: points upward when open */
}

.cta-button {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
    /* optional but matches screenshot softness */
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    /* slight fade on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.login-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
    /* optional but matches screenshot softness */
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    /* slight fade on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero {
    background:
        linear-gradient(to right,
            rgba(6, 40, 61, 1) 0%,
            rgba(5, 40, 69, 0.87) 40%,
            rgba(0, 40, 101, 0.32) 100%),
        url('/landing-assets/images/hero-bg.jpg') top/cover no-repeat;

    padding: 120px 0 100px;
    color: var(--white);
    background-attachment: fixed;
    /* Optional: makes it look even more premium */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.hero-label {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.primary-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.primary-button:hover {
    background-color: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-form {
    background-color: #091C27;
    padding: 48px;
    /* was 32px */
    max-width: 500px;
    /* new: limits overall width */
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 24px;
    text-align: center;
}

.star-rating {
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 4px;
    text-align: center;
}

.form-header h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.form-header h5 {
    color: #47B5FF;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    padding-top: 20px;
}

#leadForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

#leadForm input {
    padding: 14px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    width: 108%;
}

#leadForm input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

#leadForm textarea {
    padding: 14px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    resize: none;
    width: 108%;
    /* prevents dragging bigger */
    height: 80px;
    /* equals ~3 lines */
    font-family: inherit;
    /* matches input font */
}

#leadForm textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-submit {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 8px;
    width: 108%;
}

.form-submit:hover {
    background-color: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.services-grid {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.services-header {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.platform-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.services-title h2 {
    font-size: 42px;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-title {
    color: white;
}

.section-label {
    color: #E7B317 !important;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-label.white {
    color: white;
}

.services-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* hello style new */

.icon-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    aspect-ratio: 1;
}

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

.icon-item i {
    font-size: 36px;
    color: #2563eb;
}

.icon-item img {
    width: 80%;
    /* fill the container */
    height: 80%;
    /* maintain aspect ratio with object-fit */
    object-fit: contain;
    /* keeps image proportions */
    transition: transform 0.3s;
}

/* Zoom image on hover along with the lift */
.icon-item:hover img {
    transform: scale(1.1);
    /* zooms 10% */
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left content */
.services-left {
    flex: 1;
    /* take available space */
    min-width: 700;
    /* prevents shrinking too much */
}

/* Right image */
.services-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.services-right img {
    max-width: 100%;
    height: auto;
}

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

.services-icons {
    background: #091C27;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-icons::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #fbbf24 2px, transparent 2px);
    background-size: 12px 12px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info div {
    flex: 1;
}

.client-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: #1f2937;
    font-weight: 600;
}

.testimonial-card.dark .client-info h4 {
    color: white;
}

.client-info p {
    font-size: 13px;
    color: #9ca3af;
}

.testimonial-card.dark .client-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* hello style close */

.services-title {
    flex: 1;
}

.services-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 800;
    color: #ffffff;
}

.services-title p {
    color: var(--text-light);
    font-size: 16px;
}

.reasons {
    padding: 80px 0;
    background-color: var(--white);
}

.reasons-text {
    text-align: center;
    /* centers ALL text inside */
}

.reasons-text p {
    color: #7A8C94;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.reasons-text .section-title,
.reasons-text h2 {
    color: #091C27;
    margin-bottom: 15px;
}

.reasons-text h4 {
    color: #7A8C94;
    font-weight: 400;
    /* optional */
    line-height: 1.6;
    margin-bottom: 35px;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.3;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 32px;
    max-width: 1100px;
    /* keeps the layout nicely centered like the screenshot */
    margin: 0 auto;
    /* center the whole grid */
}

.reason-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #EBEEF2;
    position: relative;
    /* required for decoration */
    overflow: hidden;
    transition: all 0.3s ease;
}

/* subtle hover */
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.reason-header {
    display: flex;
    align-items: center;
    gap: 16px;
    /* space between icon and heading */
    margin-bottom: 16px;
}

.reason-icon {
    margin: 0;
    /* remove bottom margin */
}

.reason-icon img {
    width: 48px;
    height: 48px;
    margin: 0;
    /* no spacing below */
}

.reason-card h3 {
    margin: 0;
    /* remove top/bottom margin */
    font-size: 27px;
    line-height: 1.4;
}

.reason-card p {
    font-size: 15px;
    color: #7A8C94;
    line-height: 1.65;
    margin-bottom: 20px;
}

.learn-more {
    color: #0057FF;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    color: #0041CC;
}

.reason-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    height: 80px;
    background: url('/landing-assets/images/services-bg-card.png') no-repeat;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
}

.who-we-are {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.who-text {
    width: 100%;
    max-width: 550px;
}

.who-text h5 {
    color: #7A8C94;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    /* matches the spaced-out look */
    text-transform: uppercase;
    margin-bottom: 12px;
    /* creates space before the H2 */
    display: block;
}

.who-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.who-text>p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid #1C6EEE;
}

.feature-item-1 {
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid #E7B317;
}

.feature-item-2 {
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid #002E76;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.who-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-placeholder {
    height: 100%;
    background:
        linear-gradient(rgba(10, 31, 61, 0.55), rgba(10, 31, 61, 0.55)),
        url('/landing-assets/images/about-us-bg.jpg') center/cover;
    border-radius: 16px;
    /* more rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    /* more internal padding */
}

.power-text {
    text-align: center;
    color: var(--white);
}

.power-text-box {
    padding: 10px 0;
}

.power-text-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #091C27;
    margin-bottom: 12px;
}


.power-text-box p {
    font-size: 15px;
    color: #7A8C94;
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    border-radius: 3px;
    object-fit: cover;
}

.power-text h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.power-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* how we generate section start */
.how-we-generate {
    padding: 80px 0;
    /* background: linear-gradient(135deg, var(--dark-navy) 0%, #1A3A5C 100%); */
    color: var(--white);
    background-color: #091C27;
}

.how-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-bottom: 50px;
    gap: 40px;
}

.how-header h5 {
    color: #7A8C94;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    /* space under tab */
    text-transform: uppercase;
}

.section-title-white {
    font-size: 42px;
    text-align: left;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle-white {
    text-align: left;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    margin-top: 50px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 240px);
    /* fixed width like the image */
    justify-content: center;
    gap: 30px;
}

.method-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 32px;
    border-radius: 2px;
    text-align: left;
    /* left aligned like reference */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.method-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.method-card.white {
    background-color: #ffffff !important;
}

.method-card.light-blue-1 {
    background-color: #E9F3FF !important;
}

.method-card.light-blue-2 {
    background-color: #CDE7FF !important;
}

.method-card.highlight {
    background-color: #1C6EEE !important;
    color: white !important;
}

.method-card.white p,
.method-card.light-blue-1 p,
.method-card.light-blue-2 p,
.method-card.white h3,
.method-card.light-blue-1 h3,
.method-card.light-blue-2 h3 {
    color: #091C27 !important;
}

.method-card.highlight p,
.method-card.highlight h3 {
    color: #ffffff !important;
}

.method-card.highlight .method-icon {
    background: rgba(255, 255, 255, 0.2);
}



.method-icon {
    width: 54px;
    height: 54px;
    background: #47b5ff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.method-icon-2 {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.method-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.method-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.process-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 250px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding: 0 20px;
}

.process-line::before {
    content: '';
    position: absolute;
    width: 91%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 4.5%;
    transform: translateY(-50%);
    z-index: -1;
}

.line-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.line-dot.active {
    width: 14px;
    height: 14px;
    background: #fbbf24;
    box-shadow:
        0 0 12px #fbbf24,
        0 0 24px rgba(251, 191, 36, 0.6),
        0 0 40px rgba(251, 191, 36, 0.4);
    transform: translateY(-15%);
    position: relative;
    top: 50%;
}

.how-left-img {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 180px;
    z-index: 0;
    pointer-events: none;
}

.how-right-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    z-index: 0;
    pointer-events: none;
}

.how-we-generate {
    position: relative;
    overflow: hidden;
}

/* how we generate section end */
/* Learn to grow section start */
.learn-grow {
    padding: 120px 0;
    background-color: #ffffff;
}

.learn-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* text slightly narrower than image */
    gap: 80px;
    align-items: center;
}

/* Small tag */
.progress-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #64748b;
    /* slate-500 */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Title */
.learn-text h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    /* slate-900 */
    margin-bottom: 24px;
}

.learn-text h2 strong {
    font-weight: 800;
}

/* Subtitle */
.learn-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Button – exact blue from the screenshot */
.learn-btn {
    display: inline-block;
    background: #3b82f6;
    /* blue-500 */
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-btn:hover {
    background: #2563eb;
    /* blue-600 */
    transform: translateY(-2px);
}

/* Image + Video placeholder */
.learn-image {
    position: relative;
}

.video-placeholder {
    height: 480px;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('/landing-assets/images/progress-vid-bg.jpg') center/cover no-repeat;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Play button – exact match (white circle + blue triangle + subtle pulse) */
.play-button {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.play-button svg {
    margin-left: 4px;
    /* slight offset so triangle looks centered */
}

/* Learn to grow ends */
/* Testimonials starts */

.testimonials-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tagg {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.testimonials-header .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.light {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.testimonial-card.dark {
    background-color: #091C27;
    color: white;
    transform: translateY(-20px);
    /* middle card pops out */
}

.testimonial-card.dark:hover {
    transform: translateY(-32px);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.quote {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    font-style: normal;
    text-align: center;
}

.testimonial-card.dark .quote {
    color: white;
}

.quote-text {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
}

.testimonial-card.dark .quote-text {
    color: rgba(255, 255, 255, 0.75);
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info .name {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}

.testimonial-card.dark .author-info .name {
    color: white;
}

.author-info .title {
    font-size: 14px;
    color: #64748b;
}

.testimonial-card.dark .author-info .title {
    color: rgba(255, 255, 255, 0.6);
}

.quote-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 80px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 1;
    font-weight: bold;
}

.quote-icon.blue {
    color: #1C6EEE !important;
}

.quote-icon.white {
    color: rgba(255, 255, 255, 0.2);
}

/* Testimonials ends */
/* Real Estate starts */

.final-cta {
    position: relative;
    overflow: hidden;
    background: #1C6EEE;
    /* exact blue from your design */
    margin-top: 100px;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
    align-items: center;
    position: relative;
}

/* Left Content */
.cta-left-content {
    padding: 0 100px;
    color: white;
    position: relative;
    z-index: 2;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.cta-left-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: white;
}

.cta-left-content h2 strong {
    font-weight: 800;
}

.cta-left-content p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 540px;
}

/* Main CTA Button */
.cta-main-btn {
    display: inline-block;
    background: white;
    color: #1e293b;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-main-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Decorative shape (your single image) */
.decor-shape {
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 280px;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

/* Right Side - Image */
.cta-right-image {
    position: relative;
    height: 720px;
}

.building-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Blue dots top-right */
.blue-dots {
    position: absolute;
    top: 10px;
    left: 50px;
    width: 140px;
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-right-image {
        display: none;
    }

    .cta-left-content {
        padding: 120px 60px;
        text-align: center;
    }

    .cta-left-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .decor-shape {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        width: 240px;
    }
}

@media (max-width: 640px) {
    .cta-left-content h2 {
        font-size: 42px;
    }

    .cta-left-content {
        padding: 100px 30px;
    }
}

/* Real Estate ends */
/* Blog starts */

.latest-news-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.news-header {
    display: block;
    /* ← change from flex to block */
    margin-bottom: 80px;
}

.title-and-button-row {
    display: flex;
    align-items: center;
    gap: 40px;
    /* space between title, text and button */
    flex-wrap: wrap;
    /* safe fallback on very small screens */
    margin-top: 20px;
    /* space between [ BLOG ] and the line below */
}

/* Make the text part behave like a single vertical block */
.news-header-text {
    display: block;
    /* ← no longer flex */
}

.section-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 0;
    /* remove old margin */
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.1;
    flex-shrink: 0;
    white-space: nowrap;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    flex: 1;
    /* takes available space */
    max-width: 600px;
}

/* Button stays exactly the same */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: #3b82f6;
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    /* prevent button from shrinking */
}

.view-all-btn:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.news-thumb {
    height: 220px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
    transform: scale(1.08);
}

.news-content {
    padding: 28px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.news-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-meta .comments {
    color: #cbd5e1;
    margin-left: 8px;
}

.news-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all-btn {
        align-self: flex-end;
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-header .section-title {
        font-size: 38px;
    }
}

/* Blog ends */
/* FOOTER STARTS */

.main-footer {
    position: relative;
    background: #002E76;
    color: white;
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-newsletter h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    max-width: 380px;
    margin-bottom: 32px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    background: white;
    color: #1e293b;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #2563eb;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #3b82f6;
    transform: translateY(-4px);
}

/* Links Columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.contact-list li {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-list strong {
    color: white;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo span {
    background: #3b82f6;
    color: white;
    padding: 10px 28px;
    font-weight: 800;
    font-size: 18px;
    border-radius: 4px;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.footer-bottom-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-bar p .separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* Decorative background shapes */
.footer-shapes {
    position: absolute;
    top: 7%;
    right: 0;
    width: 250px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* FOOTER ENDS */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .stats {
        flex-direction: column;
        gap: 24px;
    }

    .services-header {
        flex-direction: column;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-content,
    .learn-content {
        grid-template-columns: 1fr;
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title,
    .section-title-white {
        font-size: 32px;
    }

    .reasons-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .platform-icons {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
