* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    
    --accent-teal: #0F4646;     /* Modern teal */
    --accent-gold: #C4A35A;     /* Warm metallic accent */
    --neutral-white: #FFFFFF;
    --neutral-gray: #4A4A4A;
    --bright-green: #32CD32;
}
img, video {
    max-width: 100%;
    height: auto;
}
body { 
    font-family: system-ui, Roboto, -apple-system, sans-serif; 
    background: var(--primary-light); 
    color: var(--neutral-gray);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}
.site-footer a:hover {
    color: var(--accent-gold);
  }




h1, h2, h3 {
    color: var(--primary-dark);
}

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

/* Navigation */
.nav {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-logo-header {
    font-size: 1.5rem;
}

.text-paragraph p{
    padding-top: 10px;
    padding-bottom: 10px;
}
.text-paragraph h2{
    padding-top: 10px;
    padding-bottom: 10px;
    
}
.space-top{
    margin-top: 50px;
}
.list-style{
    margin-left: 21px;
    padding: 15px 0;
}
/* Features Grid */
.features {
    padding: 4rem 1rem;
    background: var(--neutral-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
}

.feature-card {
    padding: 2rem;
    border-radius: 8px;
    background: var(--primary-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Sustainability Section */
.sustainability {
    background: var(--primary-dark);
    color: var(--neutral-white);
    padding: 4rem 0;
}

/* Contact Form */
.contact-form {
    padding: 4rem 0;
}

.form-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn {
    background: var(--accent-gold);
    color: #4A1F1F;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #A78542;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

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

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
 /* New Development Highlights Styles */
.highlights {
background: var(--neutral-white);
}

.feature-list {
list-style: none;
padding: 0;
}

.feature-list li {
padding: 1rem;
margin: 0.5rem 0;
background: var(--primary-light);
border-left: 4px solid var(--accent-teal);
}

.feature-list i {
margin-right: 0.8rem;
color: var(--accent-teal);
}

.timeline {
margin: 4rem 0;
}

.timeline-track {
display: flex;
justify-content: space-between;
position: relative;
margin: 3rem 0;
}

.timeline-track::before {
content: '';
position: absolute;
top: 14px;
left: 0;
right: 0;
height: 3px;
background: var(--primary-dark);
z-index: 0;
}

.milestone {
text-align: center;
position: relative;
z-index: 1;
}

.dot {
width: 30px;
height: 30px;
background: var(--neutral-white);
border: 3px solid var(--accent-gold);
border-radius: 50%;
margin: 0 auto;
}

.date {
color: var(--accent-teal);
font-weight: 600;
margin-bottom: 0.5rem;
margin-top: -.5rem;
}

.desc {
margin-top: 0.5rem;
font-size: 0.9rem;
}

@media (min-width: 768px) {
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.features-grid {
    display: block;
    gap: 2rem;
    margin-top: 1.5rem;
    }

.slide {
    height: 600px;
}
}
/* Team Section Styles */
.team {
    padding: 4rem 0;
    background: var(--primary-light);

}


.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 300px)); /* Two columns */
    justify-content: center; /* Centers the grid columns */
    gap: 2rem; /* Space between cards */padding: 0 1rem;
    max-width: 100%; /* Ensures it doesn't exceed its parent */
    margin: 0 auto;
    padding: 0 1rem; /* Adds some spacing to prevent overflow */
    max-width: 1600px; /* Adjust based on your design */
}
/* For mobile/small screens */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; /* Single column */
        max-width: 400px; /* Card width for mobile */
    }
}

.team-member {
background: var(--neutral-white);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
transition: transform 0.3s ease;
width: 100%; /* Ensures cards fill grid columns */
}

.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-photo {
position: relative;
margin-bottom: 1rem;
border-radius: 8px;
overflow: hidden;
}

.member-photo img {
max-width: 200px;
object-fit: cover;
border-radius: 8px;
}

.role {
color: var(--accent-teal);
font-weight: 600;
margin: 0.5rem 0;
}

.bio {
font-size: 0.95rem;
line-height: 1.5;
}

.founder-message {
margin: 4rem 0;
text-align: center;
}

.founder-message p{
    padding-top: 10px;
    padding-bottom: 10px;
}


.play-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255,255,255,0.8);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}

.play-overlay i {
color: var(--primary-dark);
font-size: 1.5rem;
margin-left: 5px;
}


/* Contact Section Styles */
.contact {
padding: 4rem 0;
background: var(--neutral-white);
}

.contact-content {
display: grid;
gap: 2rem;
}

.cta-column {
display: grid;
gap: 1.5rem;
}

.cta-card {
padding: 2rem;
border-radius: 8px;
transition: transform 0.3s ease;
}

.primary-cta {
background: var(--accent-teal);
color: var(--neutral-white);
}

.secondary-cta {
background: var(--primary-dark);
color: var(--neutral-white);
}

.cta-card h3 {
color: inherit;
margin-bottom: 1rem;
}

.btn-cta {
width: 100%;
margin-top: 1.5rem;
border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta:hover {
background: #A78542;
}

.svg-icons{
max-width: 18px;
max-height: 18px;
}

/* WhatsApp CTA Styles */
.whatsapp-cta {
background: var(--primary-light);
padding: 2rem;
border-radius: 8px;
text-align: center;
}

.whatsapp-link {
text-decoration: none;
color: inherit;
display: block;
transition: transform 0.3s ease;
}

.whatsapp-link:hover {
transform: translateY(-3px);
}

.whatsapp-content {
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
padding: 1.5rem;
}

.fa-whatsapp {
fill:#25D366;
width:108px;
height:108px;
border-radius: 27%;
padding: 0.7rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.whatsapp-link:hover .fa-whatsapp {
fill: var(--neutral-white);
background: #25D366;
transform: scale(1.1);
}

.contact-info {
text-align: left;
}

.phone-number {
font-size: 1.4rem;
font-weight: 600;
color: var(--primary-dark);
display: block;
margin-top: 0.5rem;
}

.response-time {
color: var(--neutral-gray);
font-size: 0.9rem;
margin-top: 1rem;
opacity: 0.8;
}

@media (max-width: 767px) {
    .features {
        padding: 2rem 1rem; /* Reduced padding for mobile */
    }

    .slider-btn {
        display: none; /* Hide arrows on mobile */
    }

    .fa-whatsapp {
        width:69px;
        height:69px;
    }
.whatsapp-content {
    flex-direction: column;
    text-align: center;
}

.contact-info {
    text-align: center;
}
}
/* Footer Styles */
.site-footer {
background: var(--primary-dark);
color: var(--neutral-white);
padding: 4rem 0 2rem;
}

.footer-grid {
display: grid;
gap: 2rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
max-width: 300px;
}

.nav-logo {
color: var(--neutral-white);
font-size: 1.8rem;
margin-bottom: 1rem;
}

.footer-tagline {
color: rgba(255,255,255,0.8);
margin-bottom: 1.5rem;
}

.footer-section {
margin: 1rem 0;
}

.footer-heading {
color: var(--accent-gold);
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

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

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

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

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

.footer-contact li {
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.8rem;
}

.footer-contact i {
color: var(--accent-teal);
min-width: 20px;
}

.footer-contact a {
color: var(--neutral-white);
text-decoration: none;
transition: color 0.3s ease;
}

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

.social-links {
display: flex;
gap: 1.5rem;
margin-top: 1.5rem;
}

.social-links a {
color: rgba(255,255,255,0.8);
font-size: 1.4rem;
transition: color 0.3s ease;
}

.social-links a:hover {
color: var(--accent-teal);
}

.footer-bottom {
padding-top: 2rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
text-align: center;
}

.copyright {
color: rgba(255,255,255,0.6);
font-size: 0.9rem;
}



.certification-badge {
height: 40px;
width: auto;
opacity: 0.9;
transition: opacity 0.3s ease;
}

.certification-badge:hover {
opacity: 1;
}

@media (min-width: 768px) {
.footer-grid {
    grid-template-columns: repeat(4, 1fr);
}
.features-grid { /* Fixed typo from .features-grid to .feature-grid */
    grid-template-columns: repeat(2, 1fr);
}
.footer-bottom {
    flex-direction: row;
    justify-content: space-between;
}
}

@media (min-width: 1024px) {
.footer-brand {
    max-width: 350px;
}
}