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

:root {
    --primary-color: #C9A961;
    --secondary-color: #1A2332;
    --dark-navy: #0D192B;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(13, 25, 43, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--dark-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--primary-color);
}

.nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}



.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.floating-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.phone-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.location-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.float-icon:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-slider {
    margin-top: 76px;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-primary {
 background: linear-gradient(135deg, #16a637 0%, #B89652 100%);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #B89652 0%, var(--primary-color) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.about-section {
    padding: 100px 0;
}

.about-image img {
    border-radius: 15px;
    transition: all 0.5s ease;
    border: 5px solid #16a637;
}
.text-primary {
    --bs-text-opacity: 1;
   color: #16a637 !important;
}
.about-image img:hover {
    transform: scale(1.05);
}

.feature-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background:linear-gradient(90deg, #16a637, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.feature-text h5 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.services-section {
    padding: 100px 0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
        text-align: center;
}

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

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #16a637, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
}

.service-card .btn {
  margin: 0 1.5rem 1.5rem;
    background-color: green;
    background: linear-gradient(135deg, #16a637 0%, #B89652 100%);
    padding: 16px;
    color: white;
    border-radius: 20px;
    
}

.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-navy));
}

.why-choose-section .section-title,
.why-choose-section .lead {
    color: #fff;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
   background: linear-gradient(135deg, #16a637 0%, #B89652 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.why-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.marquee-section {
    overflow: hidden;
   background: linear-gradient(135deg, #16a637 0%, #B89652 100%);
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.client-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.client-location {
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-section {
    padding: 100px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: #fff;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background:linear-gradient(90deg, #16a637, #333);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
}

.blog-section {
    padding: 100px 0;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

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

.blog-content {
    padding: 1.5rem;
        text-align: center;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 1rem 0;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(13, 25, 43, 0.9), rgba(13, 25, 43, 0.9)),
                url('../cta.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(184, 150, 82, 0.1));
}

.footer {
    background: var(--dark-navy);
    color: #fff;
}

.footer-logo {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #B89652);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.page-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 76px;
}

.page-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-navy));
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

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

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

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .floating-icons {
        right: 10px;
    }

    .float-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
.btn-center {
  display: block;
  margin: 20px auto 0; /* top auto bottom margin for centering */
  text-align: center;
  width: fit-content; /* keeps button compact */
}
.btn-primary {
    background: linear-gradient(135deg, #16a637 0%, #B89652 100%);
    border: none;
    margin-bottom: 10px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s 
ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .hero-slide {
        min-height: 500px;
    }

    .about-section,
    .services-section,
    .why-choose-section,
    .testimonials-section,
    .faq-section,
    .blog-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 80px 0;
    }
}
