* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Segoe UI", sans-serif;}

/* =========================================================HEADER===================================================== */
 

.hero { position: relative;height: 90vh;display: flex;align-items: center;overflow: hidden;background-image: url("../img/9.jpg");background-size: cover;background-position: center;}
.hero-overlay {position: absolute;inset: 0;background: linear-gradient(90deg, rgba(6, 30, 60, 0.95) 0%, rgba(6, 30, 60, 0.85) 40%,rgba(6, 30, 60, 0.45) 65%,rgba(6, 30, 60, 0.15) 100%);}
.hero-content {max-width: 650px;color: #fff;z-index: 2;padding-left: 5em}
.hero-tag {display: inline-block;background: #80ac23;color: #0f172a;padding: 6px 14px;border-radius: 20px;font-size: 14px;margin-bottom: 15px;}
.hero h1 {font-size: 50px;margin-bottom: 15px;}
.hero p {font-size: 18px;color: #d1d5db;margin-bottom: 30px;}
.hero-btns {display: flex;gap: 15px;}
/* BUTTONS */
.btn {padding: 14px 34px;border-radius: 30px;text-decoration: none;font-weight: 600;transition: 0.3s;}
.primary {background: #9cd323;color: #0f172a;}
.primary:hover {background: #9cd323;}
.outline {border: 2px solid #9cd323;color: #9cd323;}
.outline:hover {background: #9cd323;color: #0f172a;}
.dark {background: #0f172a;color: #fff;}


/* =============================================================INDEX PAGE=================================================== */


.heros {min-height: 100vh;background-image: url("../img/53.jpg");background-size: cover;background-position: center;z-index: 2;}
.overlay {min-height: 100vh;background: rgba(0, 0, 0, 0.35);padding: 70px 80px;color: #fff;}
/* Top Heading */.top-heading {text-align: center;max-width: 900px;margin: auto;}
.top-heading h1 {font-size: 64px;font-weight: 700;line-height: 1.1;}
.top-heading p {margin-top: 15px;font-size: 14px;color: #ddd;}
/* Divider */.divider {margin: 50px 0;border: none;border-top: 1px solid rgba(255, 255, 255, 0.3);}
/* Middle Content */.middle-content {display: flex;justify-content: space-between;align-items: center;gap: 40px;}
.left-text h2 {max-width: 520px;font-size: 26px;line-height: 1.4;}
.btns {background: #97ff20e0;color: #000;padding: 14px 22px;border-radius: 30px;text-decoration: none;font-weight: 600;display: inline-flex;align-items: center;gap: 10px;}
/* Cards */.cards {margin-top: 60px;display: grid;grid-template-columns: repeat(3, 1fr);gap: 30px;}
.card {padding: 30px;border-radius: 20px;background: linear-gradient(to bottom,rgba(255, 255, 255, 0.25),rgba(255, 255, 255, 0.05));backdrop-filter: blur(14px);color: #fff;}
.card .icon {font-size: 26px;color: #7a8a00;margin-bottom: 15px;border-color: #fff;background-color: #ffffff;}
.card h3 {font-size: 18px;margin-bottom: 10px;}
.card p {font-size: 13px;line-height: 1.6;color: #e0e0e0;}
/* Responsive */
@media (max-width: 900px) {.top-heading h1 {font-size: 42px;}
.middle-content {flex-direction: column;align-items: flex-start;}
.cards {grid-template-columns: 1fr;}}
/* Top heading animation */
.top-heading {animation: fadeDown 1.2s ease forwards;}
/* Divider */
.divider {animation: fadeIn 1.5s ease forwards;}
/* Middle content */
.middle-content {animation: fadeUp 1.4s ease forwards;}
/* Cards stagger animation */
.card {opacity: 0;animation: cardUp 1s ease forwards;}
.card:nth-child(1) {animation-delay: 0.2s;}
.card:nth-child(2) {animation-delay: 0.4s;}
.card:nth-child(3) {animation-delay: 0.6s;}
@keyframes fadeDown {from {opacity: 0;transform: translateY(-40px);}
to {opacity: 1;transform: translateY(0);}}
@keyframes fadeUp {from {opacity: 0;transform: translateY(40px);}
to {opacity: 1;transform: translateY(0);}}
@keyframes fadeIn {from {opacity: 0;}
to {opacity: 1;}}
@keyframes cardUp {from {opacity: 0;transform: translateY(50px) scale(0.95);}
to {opacity: 1;transform: translateY(0) scale(1);}}
/* Hover Animations (Premium Feel) */
.card {transition: transform 0.4s ease, box-shadow 0.4s ease;}
.card:hover {transform: translateY(-12px);box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);}
.btn {transition: all 0.3s ease;}
.btn:hover {transform: translateY(-3px);box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);}
.about-section {padding: 80px 0;}
.container {max-width: 100%;padding-left: 5em;padding-right: 5em;margin: auto;}
.badge {display: inline-block;padding: 6px 14px;border: 1px solid #c6e400;border-radius: 20px;font-size: 12px;color: #7a8a00;margin-bottom: 25px;}
.main-title {font-size: 48px;font-weight: 700;line-height: 1.2;max-width: 700px;}
.vm {display: flex;gap: 60px;margin-top: 30px;max-width: 900px;}
.vm-box h4 {font-size: 16px;font-weight: 600;margin-bottom: 8px;}
.vm-box p {font-size: 14px;color: #666;line-height: 1.6;}
.bottom-grid {display: grid;grid-template-columns: 1.2fr 1fr;gap: 40px;align-items: center;margin-top: 60px;}
.big-image img {width: 100%;height: 100%;object-fit: cover;border-radius: 24px;}
.stats {display: grid;grid-template-columns: repeat(2, 1fr);gap: 25px;}
.stat-box {background: #f7f7f7;border-radius: 20px;padding: 25px;}
.stat-box .label {font-size: 14px;color: #777;display: block;margin-bottom: 20px;}
.stat-box h2 {font-size: 40px;font-weight: 700;}
.stat-box h2 span {color: #c6e400;}
.stat-box p {font-size: 13px;color: #777;margin-top: 5px;}
.stat-img img {width: 100%;height: 100%;object-fit: cover;border-radius: 20px;}
@media (max-width: 900px) {
.main-title {font-size: 36px;}
.vm {flex-direction: column;gap: 20px;}
.bottom-grid {grid-template-columns: 1fr;}}
/* Initial states */
.badge,.main-title,.vm,.big-image,.stat-box,.stat-img {opacity: 0;}
/* Animations applied */
.badge {animation: fadeDown 0.8s ease forwards;}
.main-title {animation: fadeUp 1s ease forwards;animation-delay: 0.2s;}
.vm {animation: fadeUp 1s ease forwards;animation-delay: 0.4s;}
.big-image {animation: fadeLeft 1.2s ease forwards;animation-delay: 0.6s;}
.stat-box:nth-child(1) {animation: fadeUp 1s ease forwards;animation-delay: 0.8s;}
.stat-box:nth-child(2) {animation: fadeUp 1s ease forwards;animation-delay: 1s;}
.stat-box:nth-child(3) {animation: fadeUp 1s ease forwards;animation-delay: 1.2s;}
.stat-img {animation: fadeRight 1.2s ease forwards;animation-delay: 1.4s;}
/* Keyframes */
@keyframes fadeUp {from {opacity: 0;transform: translateY(40px);}
to {opacity: 1;transform: translateY(0);}}
@keyframes fadeDown {from {opacity: 0;transform: translateY(-30px);}
to {opacity: 1;transform: translateY(0);}}
@keyframes fadeLeft {from {opacity: 0;transform: translateX(-50px);}
to {opacity: 1;transform: translateX(0);}}
@keyframes fadeRight {from {opacity: 0;transform: translateX(50px);}
to {opacity: 1;transform: translateX(0);}}
.stat-box,.stat-img {transition: transform 0.4s ease, box-shadow 0.4s ease;}
.stat-box:hover,
.stat-img:hover {transform: translateY(-10px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);}
.big-image img {transition: transform 0.6s ease;}
.big-image:hover img {transform: scale(1.05);}
.difference-section {display: flex;gap: 80px;padding: 80px 70px;align-items: center;}
.image-wrap {position: relative;flex: 1;}
.image-wrap img {width: 100%;border-radius: 30px;}
.rating-card {position: absolute;bottom: 25px;left: 25px;background: #6b6b6b;color: #fff;padding: 20px;border-radius: 18px;width: 190px;}
.rating-card h2 {font-size: 36px;color: #dff25b;}
.avatars {display: flex;margin: 10px 0;}
.avatars img {width: 34px;height: 34px;border-radius: 50%;border: 2px solid #fff;margin-left: -8px;}
.stars {color: #ffcc00;font-size: 14px;}
.rating-card span {font-size: 12px;opacity: 0.9;}
.content-wrap {flex: 1;}
.badge {display: inline-block;padding: 6px 14px;border: 1px solid #d6d6d6;border-radius: 20px;font-size: 12px;margin-bottom: 20px;}
.content-wrap h1 {font-size: 48px;line-height: 1.2;margin-bottom: 20px;}
.intro {color: #555;max-width: 520px;margin-bottom: 35px;}
.feature {display: flex;gap: 18px;margin-bottom: 28px;}
.feature {display: flex;gap: 18px;margin-bottom: 28px;}
.icon {width: 46px;height: 46px;background: #dff25b;border-radius: 50%;display: flex;align-items: center;justify-content: center;flex-shrink: 0;}
.icon svg {width: 22px;height: 22px;fill: #000;}
.feature h4 {font-size: 16px;margin-bottom: 6px;font-weight: 600;}
.feature p {font-size: 14px;color: #666;max-width: 420px;}
@media (max-width: 900px) {.difference-section { flex-direction: column;}
.content-wrap h1 {font-size: 36px;}}
.difference-section {animation: fadeUp 0.8s ease forwards;}
@keyframes fadeUp {from {opacity: 0;transform: translateY(40px);}
to {opacity: 1;transform: translateY(0);}}
.image-wrap img {animation: imageZoom 1s ease forwards;}
@keyframes imageZoom {from {opacity: 0;transform: scale(1.06);}
to {opacity: 1;transform: scale(1);}}
.rating-card {animation: floatCard 3s ease-in-out infinite;}
@keyframes floatCard {0% {transform: translateY(0);}
50% {transform: translateY(-6px);}
100% {transform: translateY(0);}}
.feature {opacity: 0;animation: slideIn 0.7s ease forwards;}
.feature:nth-child(1) {animation-delay: 0.2s;}
.feature:nth-child(2) {animation-delay: 0.4s;}
.feature:nth-child(3) {animation-delay: 0.6s;}
@keyframes slideIn {from {opacity: 0;transform: translateX(40px);}
to {opacity: 1;transform: translateX(0);}}
.icon {transition: transform 0.3s ease;}
.feature:hover .icon {transform: scale(1.1);}
.project-item {opacity: 0;transform: translateY(60px);transition: all 0.8s ease;}
.project-item.show {opacity: 1;transform: translateY(0);}
/* Number animation */
.number {display: inline-block;transform: translateY(30px);opacity: 0;transition: all 0.8s ease;}
.project-item.show .number {transform: translateY(0);opacity: 0.25;}
.project-item {opacity: 0;transform: translateY(60px);transition: all 0.8s ease;}
.project-item.show {opacity: 1;transform: translateY(0);}
.feature-section {width: 100%;display: flex;gap: 25px;justify-content: center;background: #96a324;padding-top: 4em;padding-bottom: 4em;}
.feature-card {width: 220px;height: 240px;background: #f7f4ec;border-radius: 16px;text-align: center;padding: 40px 20px;cursor: pointer;transition: all 0.4s ease;overflow: hidden;}
.feature-card h3 {margin-top: 20px;font-size: 20px;color: #222;transition: 0.4s;}
.icon-circle {width: 80px;height: 80px;background: #fff;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: auto;z-index: 2; position: relative;transition: 0.4s;}
.icon-circle i {font-size: 28px;color: #222;}
.feature-card::before {content: "";position: absolute;inset: 0;background: rgba(0, 0, 0, 0.85);opacity: 0;transition: 0.4s;}
.feature-card:hover::before,
.feature-card.active::before {opacity: 1;}
.feature-card:hover h3,
.feature-card.active h3 {color: #ffffff;}
.feature-card:hover .icon-circle,
.feature-card.active .icon-circle {background: #e6ff00;}
.feature-card:hover .icon-circle i,
.feature-card.active .icon-circle i {color: #000;}
.feature-card:hover {transform: translateY(-10px);}
.testimonial-section {background: #f8f6ed;padding: 80px 40px;text-align: center;overflow: hidden;}
.mini-title {font-size: 13px;letter-spacing: 2px;color: #888;margin-bottom: 10px;}
.testimonial-section h2 {font-size: 36px;font-weight: 700;margin-bottom: 60px;color: #123b1f;}
.slider-wrapper { max-width: 1100px; margin: auto; overflow: hidden;}
.testimonial-track {display: flex;gap: 40px;transition: transform 0.6s ease;}
.testimonial-card {min-width: 520px;background: #fff;border-radius: 30px;padding: 35px;display: flex;align-items: center; gap: 25px;position: relative;box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);margin-bottom: 2em;margin-top: 2em;}
.profile img {width: 120px;height: 120px;border-radius: 20px;object-fit: cover;}
.stars {color: #d6ff00;margin-top: 8px;font-size: 16px;}
.content {text-align: left;}
.content p {font-size: 16px;color: #555;line-height: 1.6;}
.content hr {margin: 18px 0;border: none;border-top: 1px solid #eee;}
.content h4 {margin: 0;font-size: 18px;}
.content span {font-size: 14px;color: #888;}
.quote {position: absolute;bottom: -20px;right: 30px;background: #111;color: #fff;width: 50px;height: 50px;border-radius: 50%;display: grid;place-items: center;font-size: 22px;}
.dots {margin-top: 35px;}
.dot {width: 10px;height: 10px;background: #ccc;border-radius: 50%;display: inline-block;margin: 0 5px;}
.dot.active {background: #111;}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
.service-section {background: #587933be;padding: 80px 8%;font-family: "Poppins", sans-serif;}
.service-container {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 30px;}
.service-card {background: #fff;padding: 35px 28px;border-radius: 6px;position: relative;box-shadow: 0 15px 40px rgba(0, 0, 0, .12);animation: fadeUp .9s ease forwards;opacity: 0;transform: translateY(30px);}
.service-card:nth-child(1) {animation-delay: .1s}
.service-card:nth-child(2) {animation-delay: .25s}
.service-card:nth-child(3) {animation-delay: .4s}
.service-card:nth-child(4) {animation-delay: .55s}
.service-card:hover {transform: translateY(-15px);}
.icon {width: 60px;height: 60px;border: 2px solid #8bc34a;display: flex;align-items: center;justify-content: center;margin-bottom: 20px;transition: .4s;}
.icon i {font-size: 26px;color: #8bc34a;}
.service-card:hover .icon {background: #8bc34a;}
.service-card:hover .icon i {color: #fff;}
.service-card h3 {font-size: 20px;margin-bottom: 12px;font-weight: 600;}
.service-card p {font-size: 14px;color: #777;line-height: 1.6;}
.arrow-btn {position: absolute;bottom: -18px;left: 50%;transform: translateX(-50%);width: 38px;height: 38px;border-radius: 50%;background: #000;color: #fff;display: flex;align-items: center;justify-content: center;transition: .35s;}
.service-card:hover .arrow-btn {background: #8bc34a;transform: translateX(-50%) rotate(360deg);}
@keyframes fadeUp {to { opacity: 1;transform: translateY(0);}}
@media(max-width:768px) {.service-section {padding: 60px 6%;}}


/* ========================================================HEADER===================================================== */

.navbar {position: relative;display: flex;align-items: center;justify-content: space-between;padding: 0px 60px;background: #536b12;color: #ffffff;z-index: 999999;}
.logo {font-size: 22px;font-weight: bold;}
.logo span {color: #ffd700;}
.menu {list-style: none;display: flex;gap: 30px;}
.menu li {position: relative;}
.menu a {text-decoration: none;color: #fff;font-weight: 500;}
.menu a:hover {color: #97d622;}
.dropdown {position: relative;}
.dropdown-menu {display: none;position: absolute;background: #fff;top: 35px;left: 0;min-width: 150px;border-radius: 6px;overflow: hidden;box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);z-index: 2;}
.dropdown.active .dropdown-menu {display: block;}
.dropdown-menu li a {color: #333;display: block;padding: 10px;text-decoration: none;}
.dropdown-menu li a:hover {background: #f2f2f2;}
.login-btn {background: #c8ff00;border: none;padding: 8px 20px;border-radius: 6px;color: #000000;cursor: pointer;}
.login-btn:hover {background: #ffffff;color: rgb(155, 196, 8);}
.nav-link{
    color: #fff;
}

/* ===========================================================FOOTER======================================================== */


.travel-footer {position: relative;background: #486316;color: #e6e6e6;padding-top: 80px;overflow: hidden;}
.travel-footer::before {content: "";position: absolute;top: -120px;left: 50%;width: 600px;height: 600px;background: radial-gradient(circle, rgba(87, 100, 29, 0.15), transparent 70%);transform: translateX(-50%);}
.footer-container {position: relative;z-index: 2;display: grid;grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));gap: 50px;padding: 0 6%;}
.footer-logo {font-size: 28px;margin-bottom: 15px;font-weight: 700;}
.footer-logo span {color: #808b1a;}
.footer-col h4 {font-size: 20px; margin-bottom: 18px;color: #ffffff;position: relative;}
.footer-col h4::after {content: "";width: 35px;height: 2px;background: #9dff00;display: block;margin-top: 6px;border-radius: 5px;}
.footer-col p {display: flex;align-items: center;gap: 20px;margin-bottom: 10px;line-height: 1.7em;text-align: justify;font-size: 18px;}
.footer-col p i {color: #ffffff;font-size: 18px;}
.footer-col ul {list-style: none;}
.footer-col ul li {margin-bottom: 10px;}
.footer-col ul li a {text-decoration: none;color: #cfcfe0;font-size: 18px;position: relative;transition: 0.3s;}
.footer-col ul li a::after {content: "";position: absolute;left: 0;bottom: -4px;width: 0;height: 2px;background: #ffffff;transition: 0.3s;}
.footer-col ul li a:hover {color: #ffffff;}
.footer-col ul li a:hover::after {width: 100%;}
.social-icons {margin-top: 20px;}
.social-icons a {display: inline-flex;align-items: center;justify-content: center;width: 42px;height: 42px;margin-right: 10px;border-radius: 50%;background: rgba(255, 255, 255, 0.12);backdrop-filter: blur(6px);color: #fff;font-size: 17px;transition: all 0.35s ease;}
.social-icons a:hover {background: #ffffff;color: #84b922;transform: translateY(-6px) scale(1.05);}
.footer-bottom {margin-top: 60px;padding: 18px;text-align: center;background: rgba(0, 0, 0, 0.45);font-size: 14px;color: #bfc1d9;}
@media (max-width: 768px) {.footer-container {text-align: center;}
.footer-col h4::after {margin-left: auto; margin-right: auto;}}

/* ==============================================================ABOUT PAGE CSS ====================================================== */


.about-section-ab {width: 100%;background: #fff;font-family: "Poppins", sans-serif;}
.about-container-ab {display: grid;grid-template-columns: 1fr 1fr;gap: 50px;padding: 3em;align-items: center;}
.about-images-ab {position: relative;}
.img-main-ab img {width: 100%;border-radius: 12px;}
.img-small-ab {position: absolute;bottom: -40px;right: -40px;width: 55%;border-radius: 12px;overflow: hidden;box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);}
.img-small-ab img {width: 100%;display: block;border: 6px solid #fff;border-radius: 20px;}
.team-badge-ab {position: absolute;bottom: 30px;left: 30px;background: #fff;padding: 15px 18px;border-radius: 10px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);}
.team-badge-ab h4 {font-size: 14px;margin-bottom: 8px;}
.avatars-ab {display: flex;align-items: center;}
.avatars-ab img {width: 30px;height: 30px;border-radius: 50%;border: 2px solid #fff;margin-left: -8px;}
.avatars-ab span {margin-left: 8px;background: #d7ff00;font-size: 12px;padding: 4px 8px;border-radius: 20px;font-weight: 600;}
.about-tag-ab {font-size: 13px;color: #999;letter-spacing: 1px;}
.about-content-ab h2 {margin: 15px 0;font-size: 36px;line-height: 1.3;color: #0b2b16;}
.about-desc-ab {font-size: 15px;color: #666;max-width: 480px;}
.about-features-ab {margin: 30px 0;}
.feature-ab {display: flex;gap: 15px;margin-bottom: 20px;}
.feature-ab i {font-size: 22px;color: #0b2b16;}
.feature-ab h4 {font-size: 18px;margin-bottom: 4px;}
.feature-ab p {font-size: 14px;color: #666;}
.about-actions-ab {display: flex;align-items: center;gap: 30px;}
.btn-read-ab {background: #d7ff00;color: #000;padding: 12px 22px;border-radius: 30px;font-weight: 600;text-decoration: none;}
.call-box-ab {display: flex;align-items: center;gap: 12px;}
.call-box-ab i {width: 45px;height: 45px;border: 2px solid #000;border-radius: 50%;display: flex;align-items: center;justify-content: center;}
.call-box-ab span {font-size: 12px;color: #777;}
.call-box-ab strong {font-size: 14px;}
.about-section-ab * {opacity: 0;transform: translateY(40px);animation: allFadeUp 0.9s ease forwards;}
.about-images-ab {animation-delay: 0.1s;}
.about-content-ab {animation-delay: 0.25s;}
.about-content-ab h2 {animation-delay: 0.35s;}
.about-desc-ab {animation-delay: 0.45s;}
.feature-ab:nth-child(1) {animation-delay: 0.55s;}
.feature-ab:nth-child(2) {animation-delay: 0.65s;}
.about-actions-ab {animation-delay: 0.8s;}
@keyframes allFadeUp {from {opacity: 0;transform: translateY(40px);}
to {opacity: 1;transform: translateY(0);}}
.img-main-ab img,
.img-small-ab img {transition: transform 0.5s ease, box-shadow 0.5s ease;}
.about-images-ab:hover .img-main-ab img {transform: scale(1.05);}
.about-images-ab:hover .img-small-ab img {transform: scale(1.08);}
.feature-ab {transition: transform 0.4s ease;}
.feature-ab:hover {transform: translateY(-6px);}
.btn-read-ab {transition: all 0.4s ease;}
.btn-read-ab:hover {background: #000;color: #fff;transform: translateY(-4px);}
.call-box-ab i {transition: all 0.4s ease;}
.call-box-ab:hover i {background: #000;color: #fff;transform: rotate(360deg);}
.property-section-ab {margin-top: 3em;padding: 50px 8%;background: #f3f3f3;font-family: "Poppins", sans-serif;background-image: url("../img/9.jpg");background-size: cover;background-position: center;}
.property-header-ab {text-align: center;margin-bottom: 60px;}
.property-header-ab h2 {font-size: 34px;font-weight: 600;color: #2f3b4a;}
.property-header-ab p {margin-top: 8px;color: #777;font-size: 15px;}
.property-cards-ab {display: grid;grid-template-columns: repeat(4, 1fr);background: #fff;border-radius: 10px;overflow: hidden;box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);}
.property-card-ab {padding: 45px 30px;text-align: center;border-right: 1px solid #eee;}
.property-card-ab:last-child {border-right: none;}
.icon-circle-ab {width: 80px;height: 80px;background: #8fa02f;border-radius: 50%;margin: 0 auto 25px;display: flex;align-items: center;justify-content: center;}
.icon-circle-ab i {font-size: 32px;color: #fff;}
.property-card-ab h3 {font-size: 18px;margin-bottom: 12px;color: #333;}
.property-card-ab p {font-size: 14px;color: #777;line-height: 1.6;}
.property-section-ab {opacity: 0;animation: sectionFadeUp 1s ease forwards;}
@keyframes sectionFadeUp {from {opacity: 0;transform: translateY(40px);}
to {opacity: 1;transform: translateY(0);}}
.property-card-ab {opacity: 0;transform: translateY(30px);animation: cardFade 0.8s ease forwards;}
.property-card-ab:nth-child(1) {animation-delay: 0.2s;}
.property-card-ab:nth-child(2) {animation-delay: 0.35s;}
.property-card-ab:nth-child(3) {animation-delay: 0.5s;}
.property-card-ab:nth-child(4) {animation-delay: 0.65s;}
@keyframes cardFade {to {opacity: 1;transform: translateY(0);}}
.property-card-ab {transition: transform 0.4s ease, box-shadow 0.4s ease;}
.property-card-ab:hover {transform: translateY(-10px);box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);}
.icon-circle-ab {transition: all 0.4s ease;}
.property-card-ab:hover .icon-circle-ab {background: #d7ff00;}
.property-card-ab:hover .icon-circle-ab i {color: #000;}
.team-section-ab {padding: 90px 8%;text-align: center;font-family: "Poppins", sans-serif;background: #fff;}
.team-title-ab {font-size: 36px;font-weight: 700;margin-bottom: 60px;color: #000000;}
.team-title-ab span {font-weight: 700;color: #828641;}
.team-grid-ab {display: grid;grid-template-columns: repeat(4, 1fr);gap: 35px;}
.team-card-ab {position: relative;overflow: hidden;}
.team-card-ab img {width: 100%;height: 100%;object-fit: cover;display: block;}
.team-info-ab {position: absolute;bottom: 0;left: 0;width: 100%;background: #7c8336;color: #fff;padding: 18px 15px;text-align: center;}
.team-info-ab h3 {font-size: 16px;margin-bottom: 4px;}
.team-info-ab p {font-size: 13px;opacity: 0.75;}
.social-icons-ab {position: absolute; bottom: -70px;left: 0;width: 100%;background: #5a5e29;padding: 15px 0;display: flex;justify-content: center;gap: 14px;transition: 0.4s ease;}
.social-icons-ab a {width: 38px;height: 38px;border-radius: 50%;background: #fff;color: #0f2a1f;display: flex;align-items: center;justify-content: center;font-size: 15px;transition: 0.3s ease;}
.social-icons-ab a:hover {background: #9cd323;color: #000;}
.team-card-ab:hover .social-icons-ab {bottom: 0;}
.team-card-ab:hover .team-info-ab {transform: translateY(-70px);transition: 0.4s ease;}
.process-section-ab {padding: 90px 8%;background: #eaf3ee;text-align: center;font-family: "Poppins", sans-serif;}
.process-tag-ab {display: inline-block;font-size: 14px;color: #6b6b6b;margin-bottom: 10px;}
.process-title-ab {font-size: 36px;font-weight: 500;color: #1f3d2b;margin-bottom: 60px;}
.process-title-ab span {font-weight: 700;}
.process-grid-ab {display: grid;grid-template-columns: repeat(4, 1fr);gap: 30px;}
.process-card-ab {background: #fff;padding: 0 25px 35px;border-radius: 8px;box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);}
.process-img-ab {position: relative;margin-top: -45px;}
.process-img-ab img {width: 140px;height: 140px;object-fit: cover;border-radius: 50%;border: 8px solid #eaf3ee;}
.step-no-ab {position: absolute;bottom: -5px;left: 50%;transform: translateX(-50%);background: #8bc34a;color: #fff;width: 46px;height: 46px;border-radius: 50%;display: flex;align-items: center;justify-content: center;font-weight: 600;font-size: 16px;}
.process-card-ab h3 {margin-top: 35px;font-size: 18px;color: #1f3d2b;margin-bottom: 10px;}
.process-card-ab p {font-size: 14px;color: #777;line-height: 1.6;}
.process-section-ab {opacity: 0;animation: processSectionFadeAb 1s ease forwards;}
@keyframes processSectionFadeAb {from {opacity: 0;transform: translateY(40px);}
to {opacity: 1;transform: translateY(0);}}
.process-card-ab {opacity: 0;transform: translateY(35px);animation: cardFadeUp 0.8s ease forwards;}
.process-card-ab:nth-child(1) {animation-delay: 0.2s;}
.process-card-ab:nth-child(2) {animation-delay: 0.4s;}
.process-card-ab:nth-child(3) {animation-delay: 0.6s;}
.process-card-ab:nth-child(4) {animation-delay: 0.8s;}
@keyframes cardFadeUp {to {opacity: 1;transform: translateY(0);}}
.process-img-ab img {transition: transform 0.4s ease;}
.process-card-ab:hover .process-img-ab img {transform: scale(1.08);}
.step-no-ab {transition: transform 0.4s ease, background 0.4s ease;}
.process-card-ab:hover .step-no-ab {transform: translateX(-50%) scale(1.1);background: #6ea82a;}
.process-card-ab {transition: transform 0.4s ease, box-shadow 0.4s ease;}
.process-card-ab:hover {transform: translateY(-10px);box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);}


/* ===============================================SERVICES PAGE CSS================================================== */


.estate-slider-section-s{padding:90px 6%;background:#222}
.estate-slider-s{display:flex;gap:28px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none}
.estate-slider-s::-webkit-scrollbar{display:none}
.estate-card-s{min-width:300px;background:#fff;padding:30px;border-radius:26px;scroll-snap-align:start;transition:.4s ease;position:relative}
.estate-card-s.highlight,.estate-card-s:hover{background:#eaff00}
.estate-card-s:hover{transform:translateY(-12px)}
.estate-top-s{display:flex;justify-content:space-between;align-items:center}
.estate-top-s i{font-size:26px}
.estate-top-s span{font-size:42px;font-weight:600;color:#cfcfcf}
.estate-card-s h3{margin-top:18px;font-size:18px;color:#111}
.estate-card-s p{font-size:14px;color:#555;margin-top:10px;line-height:1.6}
.estate-img-s{margin-top:25px;position:relative;border-radius:22px;overflow:hidden}
.estate-img-s img{width:100%;height:210px;object-fit:cover;border-radius:22px}
.estate-img-s::before{content:"";position:absolute;inset:0;border:5px solid #eaff00;border-radius:22px;clip-path:ellipse(85% 70% at 50% 100%);pointer-events:none}
.estate-arrow-s{position:absolute;top:14px;right:14px;width:44px;height:44px;background:#111;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff}
.estate-slider-s{display:flex;gap:28px;overflow:hidden;position:relative}
.estate-track-s{display:flex;gap:28px;animation:scrollSlider 22s linear infinite}@keyframes scrollSlider{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.estate-slider-s:hover 
.estate-track-s{animation-play-state:paused}
.section-s{display:flex;flex-wrap:wrap;min-height:100vh}
.section-left-s{flex:1;min-width:300px;background-image:url(../img/9.jpg);background-size:cover;background-position:center}
.section-right-s{flex:1;min-width:300px;background-color:#0a0a0a;display:flex;flex-direction:column;justify-content:center;padding:60px 50px;position:relative;overflow:hidden}
.section-right-s::before{content:'';position:absolute;bottom:0;left:0;width:100%;height:50%;background:linear-gradient(to top,rgba(255,255,255,.05),transparent);pointer-events:none}
.section-tag-s{color:#f6ff00;font-size:14px;font-weight:600;margin-bottom:15px;display:inline-block}
.section-title-s{font-size:42px;font-weight:700;margin-bottom:20px;line-height:1.2}
.section-desc-s{font-size:16px;color:#ccc;margin-bottom:30px;line-height:1.6}
.section-list-s{list-style:none;margin-bottom:40px}
.section-list-s li{display:flex;align-items:center;margin-bottom:15px;font-size:16px;color:#ccc}
.section-list-s li::before{content:'✔';color:#f6ff00;margin-right:12px;font-weight:700}
.read-more-btn-s{display:inline-block;background-color:#f6ff00;color:#000;padding:12px 20px;width:25%;border-radius:50px;font-weight:600;text-decoration:none;transition:all .3s ease}
.read-more-btn-s:hover{background-color:#e6e600}@media (max-width:900px){
.section-s{flex-direction:column}.section-left-s,.section-right-s{min-height:50vh}}
.container-s{width:90%;margin:0 auto}
.real-estate-toolkit-s{position:relative;background-image:url(../img/53.jpg);background-size:cover;background-position:center;color:#fff;padding:60px 0;text-align:center;overflow:hidden}
.real-estate-toolkit-s::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);z-index:0}
.real-estate-toolkit-s .container-s{position:relative;z-index:1}
.section-title-s{font-size:36px;font-weight:700;margin-bottom:15px;color:#f1f1f1}
.section-subtitle-s{font-size:16px;max-width:800px;margin:0 auto 60px;line-height:1.6;color:#f1f1f1}
.toolkit-grid-s{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:30px;justify-items:center}
.toolkit-card-s{background:#ffffffe3;color:#111;border-radius:10px;padding:30px 20px;text-align:left;width:100%;transition:transform .3s,box-shadow .3s}
.toolkit-card-s:hover{transform:translateY(-10px);box-shadow:0 20px 40px rgba(0,0,0,.2)}
.card-icon-s{font-size:28px;color:#80ac23;margin-bottom:15px}
.toolkit-card-s h3{font-size:20px;margin-bottom:12px}
.toolkit-card-s p{font-size:14px;line-height:1.6;color:#555}
.testimonial-section-s{background:#f8f6ed;padding:80px 40px;text-align:center;overflow:hidden}
.mini-title-s{font-size:13px;letter-spacing:2px;color:#888;margin-bottom:10px}
.testimonial-section-s h2{font-size:36px;font-weight:700;margin-bottom:60px;color:#123b1f}
.slider-wrapper-s{max-width:1100px;margin:auto;overflow:hidden}
.testimonial-track-s{display:flex;gap:40px;transition:transform .6s ease}
.testimonial-card-s{min-width:520px;background:#fff;border-radius:30px;padding:35px;display:flex;align-items:center;gap:25px;position:relative;box-shadow:0 20px 50px rgba(0,0,0,.08);margin-bottom:2em;margin-top:2em}
.profile img s{width:120px;height:120px;border-radius:20px;object-fit:cover}
.stars-s{color:#d6ff00;margin-top:8px;font-size:16px}
.content-s{text-align:left}.content p{font-size:16px;color:#555;line-height:1.6}
.content-s hr{margin:18px 0;border:none;border-top:1px solid #eee}
.content-s h4{margin:0;font-size:18px}
.content-s span{font-size:14px;color:#888}
.quote-s{position:absolute;bottom:-20px;right:30px;background:#111;color:#fff;width:50px;height:50px;border-radius:50%;display:grid;place-items:center;font-size:22px}
.dots-s{margin-top:35px}.dot-s{width:10px;height:10px;background:#ccc;border-radius:50%;display:inline-block;margin:0 5px}
.dot-s.active{background:#111}


/* ===============================================SERVICE DESTAIL PAGE===================================================== */


.news-section-sd{padding:90px 6%;background:#9aa12e6c}
.news-tag-sd{font-size:13px;letter-spacing:1.2px;color:#6f6f6f}
.news-heading-row-sd{margin-top:12px;display:flex;justify-content:space-between;align-items:flex-start;gap:30px}
.news-heading-row-sd h2{font-size:42px;font-weight:700;line-height:1.2;max-width:520px;color:#0f2e1b}
.news-btn-sd{display:flex;align-items:center;gap:14px;padding:8px 18px;border:1px solid #cfcfcf;border-radius:40px;text-decoration:none;font-size:14px;color:#111;white-space:nowrap;background-color:#dcf13d}
.news-btn-sd .btn-icon{width:34px;height:34px;background:#111;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px}
.news-cards-sd{margin-top:60px;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.news-card-sd h3{font-size:18px;font-weight:600;line-height:1.4;color:#1b1b1b}
.news-meta-sd{margin:16px 0 6px;font-size:13px;color:#7a7a7a}
.news-image-sd{position:relative;overflow:hidden;border-radius:22px}
.news-image-sd img{width:100%;height:260px;object-fit:cover;transition:transform .45s ease}
.news-card-sd:hover img{transform:scale(1.06)}
.news-arrow-sd{position:absolute;right:18px;bottom:18px;width:50px;height:50px;background:#e8ff2f;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;color:#111}@media(max-width:992px){
.news-cards-sd{grid-template-columns:1fr 1fr}}
@media(max-width:640px){
.news-heading-row-sd{flex-direction:column}
.news-heading-row-sd h2{font-size:32px}
.news-cards-sd{grid-template-columns:1fr}}
.projects-section-sd{padding:80px 6%;background:#fff;text-align:center}
.projects-tag-sd{font-size:13px;letter-spacing:1.2px;color:#7a7a7a}
.projects-title-sd{margin-top:10px;font-size:40px;font-weight:700;color:#0f2e1b}
.projects-grid-sd{margin-top:60px;display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.project-card-sd{text-align:left}
.project-image-sd{position:relative;border-radius:22px;overflow:hidden}
.project-image-sd img{width:100%;height:260px;object-fit:cover;transition:transform .45s ease}
.project-card:hover img{transform:scale(1.06)}
.project-badge-sd{position:absolute;top:16px;left:16px;background:#111;color:#fff;font-size:12px;padding:6px 12px;border-radius:20px;z-index:2}
.project-arrow-sd{position:absolute;right:18px;top:50%;transform:translateY(-50%);width:52px;height:52px;background:#e8ff2f;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;color:#111}
.project-location-sd{display:block;margin-top:14px;font-size:13px;color:#7a7a7a}
.project-card-sd h3{margin-top:4px;font-size:18px;font-weight:600;color:#1b1b1b}
@media(max-width:900px){.projects-grid-sd{grid-template-columns:1fr}}
.property-highlights-sd{padding:90px 6%;background:#81ac2371}
.ph-grid-sd{display:grid;grid-template-columns:320px 1fr;gap:40px}
.ph-content-sd h2{font-size:34px;font-weight:700;color:#1b1b1b}
.ph-content-sd p{margin:18px 0 26px;font-size:14px;line-height:1.7;color:#6f6f6f}
.ph-btn-sd{display:inline-flex;align-items:center;gap:10px;background:#9cac0f;color:#fff;padding:12px 22px;border-radius:30px;text-decoration:none;font-size:14px}
.ph-cards-sd{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:220px;gap:20px}
.ph-card-sd{position:relative;border-radius:18px;overflow:hidden}
.ph-card-sd.tall{grid-row:span 2}
.ph-card-sd img{width:100%;height:100%;object-fit:cover;transition:.5s}
.ph-card-sd:hover img{transform:scale(1.07)}
.ph-overlay-sd{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.6));color:#fff;padding:18px;display:flex;flex-direction:column;justify-content:flex-end}
.ph-overlay-sd span{font-size:12px;opacity:.8}
.ph-overlay-sd h4{font-size:18px;font-weight:600;margin:4px 0 12px}
.ph-footer-sd{display:flex;justify-content:space-between;align-items:center;font-size:12px}
.ph-footer-sd i{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center}
@media(max-width:1100px){.ph-grid-sd{grid-template-columns:1fr}
.ph-cards-sd{grid-template-columns:repeat(2,1fr)}}

/* ===========================================================FAQ PAGE============================================================== */

.faq-section{padding:80px 60px;background:#fff}
.faq-container{display:flex;gap:60px;max-width:1200px;margin:auto}
.faq-left{width:45%;background:#f6f4ef;padding:50px;border-radius:12px}
.faq-tag{font-size:20px;color:#555;letter-spacing:1px}
.faq-left h2{font-size:40px;margin:20px 0;line-height:1.2}
.faq-left p{color:#666;margin-bottom:40px}
.faq-card{display:flex;gap:20px;background:#1c1c1c;color:#fff;padding:30px;border-radius:12px}
.faq-icon{width:45px;height:45px;background:#d6ff00;color:#000;font-weight:700;font-size:24px;border-radius:6px;display:flex;align-items:center;justify-content:center}
.faq-card-content h4{margin:0 0 10px}
.faq-card-content p{font-size:14px;margin-bottom:20px}
.faq-card-content button{background:#fff;border:none;padding:10px 22px;font-weight:600;border-radius:6px;cursor:pointer}
.faq-right{width:55%}
.faq-item{padding:22px 10px;border-bottom:1px solid #e5e5e5;font-size:16px;font-weight:500;cursor:pointer;position:relative}
.faq-right{width:55%}
.faq-item{border-bottom:1px solid #e5e5e5}
.faq-question{padding:10px 10px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.arrow-fq{transition:transform .3s ease}
.faq-answer{max-height:0;overflow:hidden;padding:0 10px;color:#666;font-size:14px;line-height:1.6;transition:max-height .4s ease,padding .3s ease}
.faq-item.active .faq-answer{max-height:200px;padding:0 10px 20px}
.faq-item.active .arrow{transform:rotate(180deg)}
.how-works-fq{padding:80px 60px;background:#98ad203b}
.how-wrapper-fq{max-width:1200px;margin:auto;display:flex;align-items:center;gap:60px}
.how-left-fq{width:50%}
.how-left-fq img{width:100%}
.how-right-fq{width:50%}
.how-small-title-fq{color:#000;font-size:40px;font-weight:700;}
.how-text-fq{color:#444;line-height:1.7;max-width:430px}
.how-steps-fq{display:grid;grid-template-columns:repeat(4,1fr);gap:25px}
.how-step-fq{text-align:center}
.icon-circle-fq{width:90px;height:90px;margin:auto;background:#f6f6f6;border-radius:50%;display:flex;align-items:center;justify-content:center}
.icon-circle-fq svg{width:36px;height:36px;stroke:#111}
.step-no-fq{display:inline-block;margin:12px 0;background:#000;color:#fff;font-size:12px;padding:5px 12px;border-radius:20px}
.how-step-fq h4{font-size:14px;font-weight:600;line-height:1.4}
.how-left-fd,.how-right-fd,.how-step-fq{transform:translateY(40px);transition:all .8s ease}
.how-works-fd.show .how-left-fd,.how-works-fd.show .how-right-fd{opacity:1;transform:translateY(0)}
.how-works-fd.show .how-step-fq{opacity:1;transform:translateY(0)}
.how-works-fd.show .how-step-fq:nth-child(1){transition-delay:.2s}
.how-works-fd.show .how-step-fq:nth-child(2){transition-delay:.4s}
.how-works-fd.show .how-step-fq:nth-child(3){transition-delay:.6s}
.how-works-fd.show .how-step-fq:nth-child(4){transition-delay:.8s}
.icon-circle-fq{transition:all .4s ease}
.icon-circle-fq svg{transition:transform .4s ease,stroke .4s ease}
.how-step-fq:hover .icon-circle-fq{background:#000}
.how-step-fq:hover .icon-circle-fq svg{transform:scale(1.15) rotate(-5deg);stroke:#a3bb4f}


/* ====================================================CONTACT PAGE======================================================== */ 

.contact-section{padding:80px 60px;background:#fff}
.contact-container{max-width:1200px;margin:auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.mini-title{font-size:13px;letter-spacing:2px;color:#777}
.contact-left h2{font-size:42px;margin:15px 0}
.contact-left p{color:#666;max-width:420px}
.contact-image{margin-top:30px;position:relative}
.contact-image img{width:100%;border-radius:18px}
.contact-info{position:absolute;bottom:20px;left:20px;background:rgba(0,0,0,.6);padding:15px 20px;border-radius:12px;color:#fff;font-size:14px}
.contact-info p{margin:5px 0;color:#fff}
.contact-info i{margin-right:8px}
.contact-right{align-items:center;background:#b5cb35;padding:40px;border-radius:18px;box-shadow:0 25px 60px rgba(0,0,0,.08)}
.contact-form .form-row{display:flex;gap:20px}
.form-group{display:flex;flex-direction:column;width:100%;margin-bottom:20px}
.form-group label{font-size:14px;margin-bottom:18px}
.form-group input,.form-group select,.form-group textarea{padding:14px 16px;border-radius:8px;border:1px solid #e5e5e5;font-size:14px;outline:0}
.form-group textarea{min-height:120px;resize:none}
.form-group.full{width:100%}
.contact-form button{background:#e6ff00;border:none;padding:15px 40px;border-radius:10px;font-weight:600;cursor:pointer;transition:.3s}
.contact-form button:hover{background:#000;color:#fff}
@media (max-width:900px){
.contact-container{grid-template-columns:1fr}}
.map-section{padding:80px 60px;background:#f9f7f1}
.map-container{max-width:1200px;margin:auto;display:grid;grid-template-columns:1fr 1.2fr;gap:50px;align-items:center}
.map-info .mini-title{font-size:13px;letter-spacing:2px;color:#777}
.map-info h2{font-size:38px;margin:15px 0}
.map-info p{color:#666;max-width:420px;margin-bottom:25px}
.map-info ul{list-style:none;padding:0}
.map-info li{font-size:15px;margin-bottom:14px;display:flex;align-items:center;gap:12px}
.map-info i{width:38px;height:38px;background:#e6ff00;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#000}
.map-embed{width:100%;height:380px;border-radius:20px;overflow:hidden;box-shadow:0 30px 60px rgba(0,0,0,.12)}
.map-embed iframe{width:100%;height:100%;border:none}
@media (max-width:900px){
.map-container{grid-template-columns:1fr}
.map-embed{height:300px}} 

/* =====================================================THEME======================================================= */

.theme-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-card);
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:50%;
  cursor:pointer;
  color: var(--text-main);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  transition:.3s;
}

.theme-btn:hover{
  transform: rotate(15deg) scale(1.1);
}


