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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f5f1;
    animation: fadeIn 0.5s ease-in-out;
}

/* Page Transition Effect */
@keyframes pageTransition {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply page transition to main content sections */
main, section {
    animation: pageTransition 0.5s ease-in-out;
}

/* Page Enter/Exit Transitions */
.page-enter {
    animation: fadeIn 0.5s ease-in-out;
}

.page-exit {
    animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8B4513;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    animation: bounce 2s infinite;
}

.scroll-top-btn:hover {
    background-color: #654321;
    transform: translateY(-5px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #8B4513;
    color: #fff;
}

.btn-primary:hover {
    background-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background-color: #D2B48C;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #BC8F8F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(210, 180, 140, 0.4);
}

.btn-light {
    background-color: #fff;
    color: #8B4513;
}

.btn-light:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #D2B48C;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
}

.logo img {
    max-height: 100px;
    width: auto;
    padding: 10px 0;
    margin-right: auto;
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #8B4513;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: #8B4513;
}

.checkbtn {
    font-size: 24px;
    color: #8B4513;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleIn 10s ease-in-out infinite alternate;
}

@keyframes scaleIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-btns {
    animation: fadeIn 1.5s ease;
}

.hero-btns .btn {
    margin: 0 10px;
}

/* Page Banner */




.page-banner {
  position: relative;
  text-align: center;
  color: #fff;
}

.page-banner img {
  width: 100%;
  height: 400px;       /* adjust height as needed */
  object-fit: cover;   /* ensures image covers nicely */
  display: block;
}

.page-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}



/* Featured Projects Section */
.featured-projects {
    padding: 80px 0;
    background-color: #fff;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #8B4513, #D2B48C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.project-status.ongoing {
    background-color: #A0522D;
}

.project-status.completed {
    background-color: #8B4513;
}

.project-status.upcoming {
    background-color: #CD853F;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.project-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.project-location, .project-price, .project-size {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.project-location i, .project-price i, .project-size i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.feature {
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #555;
}

.project-cta {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.project-cta .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #813306;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8B4513;
}

.project-info p {
    margin-bottom: 15px;
    color: #666;
}

.project-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feature {
    text-align: center;
}

.feature i {
    color: #D2B48C;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature span {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(139, 69, 19, 0.05), transparent);
    transition: height 0.5s ease;
    z-index: -1;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.8s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #8B4513;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.feature-card p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '\201C';
    font-size: 50px;
    color: #8B4513;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    content: '\201D';
    left: auto;
    right: -10px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-details h4 {
    font-size: 1.1rem;
    color: #8B4513;
    margin-bottom: 5px;
}

.client-details p {
    font-size: 0.9rem;
    color: #666;
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo span {
    color: #D2B48C;
}

.footer-logo p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-projects h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-projects h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #D2B48C;
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-projects ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-projects ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-projects ul li a:hover {
    color: #D2B48C;
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: #D2B48C;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a i {
    color: #fff;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: #D2B48C;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #bbb;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-card,
.mission-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.vision-card h3 i,
.mission-card h3 i {
    margin-right: 15px;
    color: #D2B48C;
}

.core-values {
    padding: 80px 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: #8B4513;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #8B4513;
}

.team-info p {
    color: #666;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a i {
    color: #8B4513;
    font-size: 0.9rem;
}

.team-social a:hover {
    background-color: #8B4513;
}

.team-social a:hover i {
    color: #fff;
}

.achievements {
    padding: 80px 0;
    background-color: #fff;
}

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

.achievement-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f5f1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: #D2B48C;
    margin-bottom: 10px;
}

.achievement-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Projects Page Styles */
.projects-overview {
    padding:  0px;
    background-color: #fff;
}

.project-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.project-filter-btn {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-filter-btn.active,
.project-filter-btn:hover {
    background-color: #8B4513;
    color: #fff;
}

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

/* Responsive grid layout */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.project-detail {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.project-gallery {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-info-detail h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.project-info-detail p {
    margin-bottom: 20px;
    color: #666;
}

.project-specs {
    margin: 30px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.spec-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.spec-icon i {
    color: #8B4513;
    font-size: 1.2rem;
}

.spec-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #8B4513;
}

.spec-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.project-amenities {
    padding: 80px 0;
    background-color: #fff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.amenity-card {
    text-align: center;
    padding: 20px;
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.amenity-icon i {
    color: #8B4513;
    font-size: 1.5rem;
}

.amenity-card h4 {
    font-size: 1.1rem;
    color: #8B4513;
}

.project-location {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 20px;
    color: #666;
}

.nearby-places {
    margin-top: 30px;
}

.nearby-places h4 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.place-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.place-item i {
    color: #D2B48C;
    margin-right: 10px;
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #8B4513;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #8B4513;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span i {
    margin-right: 5px;
    color: #D2B48C;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D2B48C;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-form button {
    background-color: #8B4513;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts li a {
    display: flex;
    align-items: center;
}

.recent-post-img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.recent-post-info span {
    font-size: 0.8rem;
    color: #666;
}

.recent-posts li a:hover h4 {
    color: #8B4513;
}

.categories {
    list-style: none;
}

.categories li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories li a {
    display: flex;
    justify-content: space-between;
    color: #666;
    transition: all 0.3s ease;
}

.categories li a:hover {
    color: #8B4513;
    padding-left: 5px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
}

.tags a {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tags a:hover {
    background-color: #8B4513;
    color: #fff;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    outline: none;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #666;
    transition: all 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: #8B4513;
    color: #fff;
}

/* Career Page Styles */
.career-intro {
    padding: 80px 0;
    background-color: #fff;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.career-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.career-text p {
    margin-bottom: 20px;
    color: #666;
}

.career-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #8B4513;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.openings-section {
    padding: 80px 0;
    background-color: #fff;
}

.opening-card {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.opening-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.opening-title h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 5px;
}

.opening-title p {
    color: #666;
    font-size: 0.9rem;
}

.opening-details {
    margin-bottom: 20px;
}

.opening-details h4 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.opening-details ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.opening-details ul li {
    margin-bottom: 5px;
    color: #666;
}

.opening-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item {
    background-color: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
    color: #8B4513;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 20%;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 2px solid #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
    transition: all 0.3s ease;
}

.process-step.active .step-number,
.process-step:hover .step-number {
    background-color: #8B4513;
    color: #fff;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

.apply-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.apply-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(-50px);
    transition: all 0.3s ease;
}

.apply-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #e0e0e0;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
}

.apply-form .form-group {
    margin-bottom: 20px;
}

.apply-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.apply-form input,
.apply-form textarea,
.apply-form select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.apply-form input:focus,
.apply-form textarea:focus,
.apply-form select:focus {
    border-color: #8B4513;
}

.file-input {
    position: relative;
}

.file-input input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1px dashed #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: #8B4513;
}

.file-label i {
    margin-right: 10px;
    color: #8B4513;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #8B4513;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f5f1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #8B4513;
}

.contact-map {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f5f1;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #8B4513;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #8B4513;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    background-color: #8B4513;
}

.faq-item.active .faq-toggle i {
    color: #fff;
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-grid,
    .vision-mission-grid,
    .project-detail-grid,
    .location-grid,
    .contact-wrapper,
    .career-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        width: 100%;
        margin-bottom: 30px;
    }

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

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .checkbtn {
        display: block;
    }

    nav ul {
        position: fixed;
        width: 50%;
        height: 60vh;
        background: #ffffffd5;
        top: 80px;
        right: -100%;
        text-align: center;
        transition: all 0.5s;
        flex-direction: column;
        z-index: 999;
    }

    nav ul li {
        display: block;
        margin: 20px 0;
        line-height: 30px;
    }

    #check:checked ~ ul {
        right: 0;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-btns .btn {
        margin: 5px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-90deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

/* Animation Utility Classes */
.animate {
    animation-duration: 1s;
    animation-fill-mode: both;
    will-change: opacity, transform;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

.animate-delay-800 {
    animation-delay: 0.8s;
}

.animate-delay-1000 {
    animation-delay: 1s;
}

/* Reduce animation on user preference */
@media (prefers-reduced-motion: reduce) {
    .animate {
        animation-duration: 0.1s !important;
        transition-duration: 0.1s !important;
    }
    
    .animate-delay-200,
    .animate-delay-400,
    .animate-delay-600,
    .animate-delay-800,
    .animate-delay-1000 {
        animation-delay: 0s !important;
    }
    
    .scroll-top-btn.active {
        animation: none !important;
    }
    
    .btn::before,
    .project-card::before,
    .feature-card::after {
        transition: none !important;
    }
}

.fade-in {
    animation-name: fadeIn;
}

.fade-in-down {
    animation-name: fadeInDown;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

.zoom-in {
    animation-name: zoomIn;
}

.bounce {
    animation-name: bounce;
}

.pulse {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.rotate-in {
    animation-name: rotateIn;
}


 /*Responsive Auto-Sliding Carousel*/

   
   
 .carousel-container {
      position: relative;
      width: 90%;
      margin: auto;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .card {
      min-width: 25%; /* Desktop default (100/4) */
      box-sizing: border-box;
      padding: 10px;
    }

    .card-content {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card-content img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .card-content h3 {
      margin: 10px 0;
      font-size: 18px;
    }

    .btnn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #333;
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }

    .btnn:hover {
      background: #555;
    }

    .btnn.prev {
      left: -50px;
    }

    .btnn.next {
      right: -50px;
    }

    /* Tablet (2 cards visible) */
    @media (max-width: 992px) {
      .card {
        min-width: 50%;
      }
    }

    /* Mobile (1 card visible) */
    @media (max-width: 600px) {
      .card {
        min-width: 100%;
      }
    } 


/*connectivity*/


     .card-container1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }
    .card1 {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }
    .card1 img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }
    .card1 h3 {
      margin: 10px 0 5px;
      font-size: 16px;
    }
    .card1 p {
      margin: 0 0 12px;
      font-size: 14px;
      color: #555;
    }


/*property details*/

     :root{
      --accent:#753001;
      --bg:#f7f9fc;
      --card:#fff;
      --muted:#556070;
      --radius:10px;
    }
   
    .properties {max-width:900px;margin:0 auto; display:grid; gap:18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }



    .prop-card {
      background:var(--card);
      border-radius:var(--radius);
      overflow:clip;
      box-shadow:0 6px 18px rgba(6,18,35,0.06);
      display:flex;
      flex-direction:column;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .prop-card:focus-within,
    .prop-card:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(6,18,35,0.09); }

    .media { width:100%; aspect-ratio:16/6; overflow:hidden; background:#e9eef6; }
    .media img { width:100%; height:100%; object-fit:cover; display:block; }

    .card-body { padding:14px 16px; display:flex; gap:12px; flex-direction:column; }
    .title-row { display:flex; justify-content:space-between; align-items:center; gap:8px; }
    .prop-name { font-size:16px; font-weight:700; margin:0; }
    .location { font-size:13px; color:var(--muted); margin:0; }

    .specs { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:8px; font-size:14px; color:var(--muted); }
    .spec { background:#f3f7fb; padding:8px; border-radius:8px; }

    .amenities { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
    .amenity { background:#eef6ff; padding:6px 8px; border-radius:999px; font-size:13px; color:#022a5a; }

    .card-footer { display:flex; gap:8px; margin-top:12px; align-items:center; justify-content:space-between; }
    .btn { padding:8px 12px; border-radius:8px; font-weight:600; cursor:pointer; border:0; text-decoration:none; display:inline-flex; align-items:center; gap:8px; }
    .btn-primary { background:var(--accent); color:#fff; }
    .btn-ghost { background:transparent; color:var(--accent); border:1px solid rgba(15,114,216,0.12); }

    /* Modal */
    .modal-backdrop { position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(3,6,18,0.5); z-index:40; }
    .modal { background:var(--card); padding:18px; border-radius:12px; width:min(540px,95%); box-shadow:0 20px 60px rgba(2,6,23,0.4); }
    .modal h3{margin:0 0 8px}
    .modal form{display:grid;gap:8px}
    .modal input, .modal textarea { width:100%; padding:10px; border-radius:8px; border:1px solid #e6eef8; font-size:14px }
    .modal textarea{ min-height:100px; resize:vertical }
    .close-btn{ background:transparent;border:0;font-size:18px;cursor:pointer;color:var(--muted) }

    @media (prefers-reduced-motion:reduce){ *{transition:none!important} }




    /* floting button */


    

      /*--------contact section-------*/

.location{
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}

.contact-us{
  width: 70%;
  margin: auto;
}
.contact-box{
  display: flex;
}
.section .contact-left{
  flex-basis: 30%;
  padding: 40px 0px;
}
.section .contact-right{
  flex-basis: 70%;
  padding: 40px;
}
.contact-left h3{ 
  font-size: 20px;
  color: #000000;
  font-weight: bold
}

.icon {
  font-size: 20px;
	display: flex;
	align-items: center;
	margin: 20px 0px;
  color: #059652;
 
  
}
.details h3{
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}
.details p{
  font-size: 15px;
  margin-right: 10spx;
  color: #000000;
}
label{
  color:black;
  align-items: left;
}
input{
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
textarea{
  width: 100%;
  padding: 10px;
}
#submit{
  border: none;
  background-color: rgb(16, 94, 35);
  color: white;
  width: 300px;
  margin-top: 10px;
  margin-left: 25px;
  padding: 10px;  
  border-radius: 30px;
  align-items: center;
  margin: 60px;
  text-align: center;
}
#submit:hover{
  background-color: #3e6439;
}

#popup-contact-form{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ffffff;
  padding: 30px;
  width: 450px;
  height: 625px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999;

}
.close {
  color: #df1529;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 34px;
  cursor: pointer;
}

/* Media query for mobile devices */
@media only screen and (max-width: 500px) {
  #popup-contact-form {
    width: 90%;
  }
}

/* Media query for mobile devices */
@media only screen and (max-width: 500px) {
  #submit {
    align-items: center;
    width: 55%;
    padding: 5px 10px;
    font-size: 16px;
  }
}

