/* ===================================================
   KGEYES - Real Estate Website (Pure HTML/CSS/JS)
   =================================================== */

:root {
    --gold: #ED3338;
    --gold-dark: #8f7a44;
    --gold-light: #d4bb7a;
    --dark: #0f0f0f;
    --dark-2: #1a1a1a;
    --charcoal: #232323;
    --muted: #8a8a8a;
    --light-bg: #faf7f1;
    --white: #ffffff;
    --border: #eee6d3;
    --shadow: 0 12px 40px rgba(0,0,0,.08);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.15);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Poppins', system-ui, sans-serif;
    --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: #333;
    background: #fff;
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
}

.section-eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}
.section-eyebrow::before {
    content: \"\";
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}
.section-title.light { color: #fff; }

.section-head.center { text-align: center; margin: 0 auto 60px; max-width: 720px; }
.section-head.center .section-eyebrow::after {
    content: \"\";
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-left: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(179,154,92,.35);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.6);
}
.btn-ghost:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}

.link-arrow {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s ease, color .3s ease;
}
.link-arrow:hover { gap: 14px; color: var(--gold-dark); }

/* Topbar */
.topbar {
    background: var(--dark);
    color: #cfcfcf;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-left { display: flex; gap: 30px; flex-wrap: wrap; }
.topbar-left a { display: inline-flex; align-items: center; gap: 8px; color: #cfcfcf; transition: color .3s; }
.topbar-left a:hover { color: var(--gold); }
.topbar-left i { color: var(--gold); }
.topbar-right { display: flex; gap: 8px; }
.topbar-right a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    color: #cfcfcf;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    font-size: 12px;
    transition: background .3s, color .3s, border-color .3s;
}
.topbar-right a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Header */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    gap: 20px;
}
.brand img { 
    /*height: 55px;*/ 
    width: 95px; transition: height .3s ease; 
}
.brand-text { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); letter-spacing: 3px; }
.brand-text-w { font-family: var(--serif); font-size: 28px; font-weight: 700; color: #fff; letter-spacing: 3px; }

.nav ul { display: flex; gap: 34px; }
.nav a {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-transform: capitalize;
    position: relative;
    padding: 6px 0;
    transition: color .3s ease;
}
.nav a::after {
    content: \"\";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .3s ease;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    width: 24px; height: 2px;
    background: var(--dark);
    transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    height: calc(100vh - 60px);
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .8s ease .2s forwards;
}
.hero-content h1 {
    font-size: 78px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1s ease .4s forwards;
}
.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    max-width: 620px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1s ease .6s forwards;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease .8s forwards; }

.hero-dots {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 3;
}
.hero-dots .dot {
    width: 32px; height: 3px;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .3s ease, width .3s ease;
}
.hero-dots .dot.active { background: var(--gold); width: 48px; }

.scroll-down {
    position: absolute;
    bottom: 30px; right: 40px;
    color: #fff;
    font-size: 20px;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* About */
.about { padding: 120px 0; background: var(--light-bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
    position: absolute;
    bottom: -30px; right: -30px;
    background: var(--gold);
    color: #fff;
    padding: 26px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(179,154,92,.35);
    border-radius: var(--radius);
}
.badge-num { font-family: var(--serif); font-size: 44px; font-weight: 700; display: block; line-height: 1; }
.badge-text { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-top: 6px; }

.about-text p { color: #555; margin-bottom: 20px; font-size: 15.5px; }
.about-list { margin: 26px 0 34px; }
.about-list li {
    padding: 10px 0;
    color: #444;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px dashed #dcd3ba;
    font-weight: 500;
}
.about-list li:last-child { border-bottom: none; }
.about-list i {
    width: 22px; height: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 10px;
}

/* Projects */
.projects { padding: 120px 0; background: #fff; }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.project-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .4s ease, box-shadow .4s ease;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-img { position: relative; overflow: hidden; height: 260px; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.project-card:hover .project-img img { transform: scale(1.08); }
.project-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold);
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
}
.project-body { padding: 26px 28px 30px; }
.project-body h3 { font-size: 24px; margin-bottom: 10px; }
.project-body p { color: #666; margin-bottom: 18px; font-size: 14.5px; }

/* Stats */
.stats {
    position: relative;
    padding: 90px 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover fixed;
    color: #fff;
}
.stats-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,.85), rgba(15,15,15,.9));
}
.stats-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat i { font-size: 40px; color: var(--gold); margin-bottom: 18px; }
.stat h3 {
    font-family: var(--serif);
    font-size: 54px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 600;
}
.stat p { color: rgba(255,255,255,.75); letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }

/* Portfolio */
.portfolio { padding: 120px 0; background: var(--light-bg); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: block;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,15,15,.9));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .4s ease, transform .4s ease;
}
.portfolio-item:hover .portfolio-caption { opacity: 1; transform: translateY(0); }
.portfolio-caption h4 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.portfolio-caption p { color: var(--gold-light); font-size: 13px; letter-spacing: 1px; }

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--dark);
    color: #fff;
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}
.test-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.test-slider { position: relative; min-height: 260px; margin-top: 30px; }
.test-item {
    position: absolute; inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}
.test-item.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.quote-icon { color: var(--gold); font-size: 30px; margin-bottom: 16px; opacity: .7; }
.test-text {
    font-family: var(--serif);
    font-size: 20px;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 22px;
}
.test-item h4 { color: var(--gold-light); font-size: 20px; margin-bottom: 4px; }
.test-item span { color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: 1px; }

.test-controls { display: flex; gap: 12px; margin-top: 26px; position: relative; z-index: 2; }
.test-controls button {
    width: 46px; height: 46px;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: background .3s, border-color .3s, color .3s;
}
.test-controls button:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* CTA */
.cta {
    padding: 70px 0;
    background: var(--gold);
    color: #fff;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.cta-text h2 { color: #fff; font-size: 38px; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.9); }
.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
}
.cta-form input {
    padding: 14px 18px;
    border: none;
    border-radius: var(--radius);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: box-shadow .3s ease;
}
.cta-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.5); }
.cta-form input[type=\"tel\"] { grid-column: span 2; }
.cta-form .btn { background: var(--dark); border-color: var(--dark); grid-column: span 1; }
.cta-form .btn:hover { background: #000; border-color: #000; }

/* Footer */
.footer { background: #0a0a0a; color: #b7b7b7; padding: 80px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-col h4 {
    color: #fff;
    font-family: var(--sans);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: \"\";
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: var(--gold);
}
.footer-col p { color: #999; font-size: 14px; margin-bottom: 14px; line-height: 1.7; }
.footer-col p i { color: var(--gold); margin-right: 10px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #b7b7b7; transition: color .3s, padding-left .3s; font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px;
    background: #1a1a1a;
    color: #b7b7b7;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: background .3s, color .3s, transform .3s;
}
.footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.news-form { display: flex; gap: 8px; margin-top: 10px; }
.news-form input {
    flex: 1;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid #262626;
    color: #fff;
    border-radius: var(--radius);
    font-family: inherit;
    outline: none;
}
.news-form input:focus { border-color: var(--gold); }
.news-form button {
    width: 46px;
    background: var(--gold);
    color: #fff;
    border-radius: var(--radius);
    transition: background .3s;
}
.news-form button:hover { background: var(--gold-dark); }

.footer-bottom { border-top: 1px solid #1a1a1a; padding: 22px 0; text-align: center; font-size: 13px; color: #777; }

/* Back to top */
.back-top {
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 44px; height: 44px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(179,154,92,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s, visibility .3s, background .3s;
    z-index: 90;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold-dark); }

/* Toast */
.toast {
    position: fixed;
    top: 20px; right: 20px;
    padding: 14px 22px;
    background: var(--dark);
    color: #fff;
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(120%);
    transition: opacity .4s ease, transform .4s ease;
    z-index: 999;
    font-size: 14px;
    max-width: 320px;
}
.toast.show { opacity: 1; transform: translateX(0); }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title { font-size: 36px; }
    .hero-content h1 { font-size: 58px; }
    .about-grid, .testimonials-grid, .cta-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-badge { right: 20px; bottom: -20px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .topbar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .topbar-left { gap: 18px; font-size: 12px; }
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 90px 30px 30px;
        box-shadow: -20px 0 40px rgba(0,0,0,.15);
        transition: right .35s ease;
        z-index: 105;
    }
    .nav.open { right: 0; }
    .nav ul { flex-direction: column; gap: 6px; }
    .nav a { display: block; padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 15px; }
    .menu-toggle { display: flex; z-index: 110; position: relative; }
    .section-title { font-size: 30px; }
    .hero { min-height: 560px; height: auto; padding: 120px 0 100px; }
    .hero-content h1 { font-size: 42px; }
    .hero-sub { font-size: 15px; }
    .scroll-down { display: none; }
    .about, .projects, .portfolio, .testimonials { padding: 80px 0; }
    .about-image img { width: 100%; }
    .projects-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat h3 { font-size: 40px; }
    .cta-form { grid-template-columns: 1fr; }
    .cta-form input[type=\"tel\"] { grid-column: auto; }
    .cta-form .btn { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { padding: 18px 22px; bottom: -18px; right: 10px; }
    .badge-num { font-size: 34px; }
}

.py-24 {
    padding-bottom: 6rem;
    padding-top: 6rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.gap-6 {
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.max-w-\[1300px\] {
    max-width: 1300px;
}

.grid {
    display: grid;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.duration-300 {
    animation-duration: .3s;
}

.duration-300 {
    transition-duration: .3s;
}

.transition-all {
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.p-8 {
    padding: 2rem;
}

.bg-\[\#f4f4f4\] {
    --tw-bg-opacity: 1;
    background-color: #f4f4f4;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity, 1));
}

.border-transparent {
    border-color: #0000;
}

.border-t-4 {
    border-top-width: 4px;
}

.bg-\[\#00b0c1\]\/10 {
    background-color: #00b0c11a;
}

.rounded-full {
    border-radius: 9999px;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.flex {
    display: flex;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.text-\[\#00b0c1\] {
    --tw-text-opacity: 1;
    color: #00b0c1;
    color: rgb(0 176 193 / var(--tw-text-opacity, 1));
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}

.text-\[\#1a2a3a\] {
    --tw-text-opacity: 1;
    color: #1a2a3a;
    color: rgb(26 42 58 / var(--tw-text-opacity, 1));
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-serif {
    font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.mb-3 {
    margin-bottom: .75rem;
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: #4b5563;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.leading-relaxed {
    line-height: 1.625;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.gap-12 {
    gap: 3rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.max-w-\[1300px\] {
    max-width: 1300px;
}

.text-\[\#00b0c1\]{
    --tw-text-opacity: 1;
    color: #00b0c1;
    color: rgb(0 176 193 / var(--tw-text-opacity, 1));
}

.tracking-\[0\.25em\] {
    letter-spacing: .25em;
}

.uppercase {
    text-transform: uppercase;
}

.font-semibold {
    font-weight: 600;
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.py-1 {
    padding-bottom: .25rem;
    padding-top: .25rem;
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
}

.bg-\[\#00b0c1\]\/10 {
    background-color: #00b0c11a;
}

.inline-block {
    display: inline-block;
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}
.font-serif {
    font-family: Playfair Display, Georgia, serif !important;
}

.text-\[\#8a8a8a\] {
    --tw-text-opacity: 1;
    color: #8a8a8a;
    color: rgb(138 138 138 / var(--tw-text-opacity, 1));
}

.leading-tight {
    line-height: 1.25;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-serif {
    font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: #4b5563;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.leading-relaxed {
    line-height: 1.625;
}

.mb-8 {
    margin-bottom: 2rem;
}

.gap-3 {
    gap: .75rem;
}

.gap-5 {
    gap: 1.25rem;
}

.transition-colors{
    transition-duration: .15s;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.text-\[\#1a2a3a\] {
    --tw-text-opacity: 1;
    color: #1a2a3a;
    color: rgb(26 42 58 / var(--tw-text-opacity, 1));
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: #d1d5db;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border {
    border-width: 1px;
}

@media (min-width: 768px) {
    .md\:p-10 {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}
.py-3 {
    padding-bottom: .75rem;
    padding-top: .75rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: #fff;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: #e5e7eb;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border {
    border-width: 1px;
}
.w-full {
    width: 100%;
}
button, input, optgroup, select, textarea {
    font-feature-settings: inherit;
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    font-variation-settings: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

.space-y-5>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
    margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
}

.tracking-wider {
    letter-spacing: .05em;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.py-3\.5 {
    padding-bottom: .875rem;
    padding-top: .875rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.bg-\[\#00b0c1\] {
    --tw-bg-opacity: 1;
    background-color: var(--gold);
    background-color: var(--gold);
    color: white;
}

[role=button], button {
    cursor: pointer;
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: initial;
    background-image: none;
}

button, select {
    text-transform: none;
}

button, input, optgroup, select, textarea {
    font-feature-settings: inherit;
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    font-variation-settings: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

.border-0 {
    border-width: 0;
}

.w-full {
    width: 100%;
}

.h-\[420px\] {
    height: 420px;
}

.pb-24 {
    padding-bottom: 6rem;
}

.inline-flex {
    display: inline-flex;
}

.project-highlights .project-page-bg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #0066b3;
    border-radius: 12px;
}

/*==========================
Tabs
===========================*/

.custom-tab{
    border-radius:4px;
    overflow:hidden;
}

.custom-tab .btn{
    background:#555;
    color:#fff;
    padding:12px 28px;
    border:none;
    font-size:17px;
    transition:.3s;
}

.custom-tab .btn i{
    margin-right:8px;
}

.custom-tab .btn:hover{
    background:#000;
}

.active-btn{
    background:#000 !important;
}

/*==========================
Heading
===========================*/

.title{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
    font-weight:600;
    letter-spacing:2px;
}

/*==========================
Gallery
===========================*/

.slider-wrapper{
    position:relative;
    width:100%;
}

.slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.slider::-webkit-scrollbar{
    display:none;
}

.slide{
    flex:0 0 32%;
}

.slide img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.4s;
}

.slide img:hover{
    transform:scale(1.02);
}

/*==========================
Navigation
===========================*/

.nav-gallery{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;
    border:none;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    z-index:100;
    transition:.3s;
}

.nav-gallery:hover{
    background:#000;
    color:#fff;
}

.prev{
    left:-25px;
}

.next{
    right:-25px;
}

/*==========================
Layout
===========================*/

.layout-box{
    position:relative;
}

.layout-image{
    width:100%;
    height:720px;
    object-fit:cover;
    filter:blur(8px);
    transition:.4s;
}

.overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.explore-btn{

    background: var(--gold);
    color:#fff;
    border:none;
    padding:15px 40px;
    font-size:20px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;

}

.explore-btn:hover{

    background:#bb2424;

}

/*==========================
Modal
===========================*/

.modal-content{

    border:none;
    border-radius:8px;
    padding:20px;

}

.modal-header h2{

    font-size:38px;
    font-weight:600;

}

.form-control{

    height:58px;
    border-radius:4px;

}

.form-control:focus{

    box-shadow:none;
    border-color:#0d6efd;

}

.form-check-label{

    font-size:14px;

}

.captcha{

    margin-top:20px;

}

.captcha-box{

    width:320px;
    height:78px;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;

}

.submit-btn{

    background:#005eff;
    color:#fff;
    height:56px;
    border:none;
    border-radius:4px;
    font-size:18px;
    font-weight:600;
    box-shadow:0 0 25px rgba(0,132,255,.45);

}

.submit-btn:hover{

    background:#004de0;

}

/*==========================
Responsive
===========================*/

@media(max-width:1200px){

.slide{

    flex:0 0 48%;

}

.layout-image{

    height:600px;

}

}

@media(max-width:768px){

.title{

    font-size:30px;

}

.slide{

    flex:0 0 100%;

}

.slide img{

    height:300px;

}

.prev{

    left:5px;

}

.next{

    right:5px;

}

.layout-image{

    height:450px;

}

.modal-header h2{

    font-size:28px;

}

.explore-btn{

    font-size:16px;
    padding:12px 25px;

}

.custom-tab .btn{

    padding:10px 18px;
    font-size:15px;

}
}