/* ================= RESET & GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
   font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #ffffff
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    width: 180px;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b6f47;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 650px;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url(../images/background.png) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-text {
    margin-left: 80px;
    max-width: 650px;
    color: white;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
}

.learn-more-btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #b1976b, #8b6f47);
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s ease;
}

.learn-more-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #8b6f47, #b1976b);
}
.about-text {
    max-width: 800px;       /* Limits the width for better readability */
    margin: 40px auto;      /* Centers the content horizontally and adds vertical spacing */
    padding: 20px;          /* Adds space inside the container */
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 12px;    /* Rounded corners for a modern look */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: 'Arial', sans-serif; /* Clean, professional font */
    line-height: 1.7;       /* Better readability */
    color: #333;            /* Dark grey text, softer than black */
}

.about-text h2 {
    font-size: 32px;        /* Headline size */
    margin-bottom: 20px;    /* Space below heading */
    color: #1a1a1a;         /* Slightly darker heading */
    text-align: center;     /* Centered heading */
    font-weight: 700;       /* Bold */
}

.about-text p {
    font-size: 18px;        /* Paragraph size */
    margin-bottom: 15px;    /* Space between paragraphs */
}

.core-values {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.core-values h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.core-values ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.core-values ul li {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #555;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.core-values ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.core-values ul li .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #6fbf9b;
    color: #fff;
    font-size: 20px;
}

/* ================= ABOUT HERO ================= */
.about-hero {
    height: 380px;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url(../images/ABOUT\ US.jpeg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-overlay {
    text-align: center;
    color: #ffffff;
}

.about-hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-hero-overlay p {
    margin-top: 10px;
    font-size: 16px;
}

.about-hero-overlay span {
    color: #b1976b;
}

/* ================= ABOUT PAGE ================= */
.about-page {
    padding: 100px 60px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b6f47;
}

.gold-line {
    width: 60px;
    height: 3px;
    background-color: #b1976b;
    margin: 20px 0 30px;
}

.about-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 30px;
}

.about-page h2 span {
    color: #b1976b;
}

.about-page h3 {
    margin-top: 35px;
    font-size: 20px;
}

.about-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* VALUES */
.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #b1976b;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-page h2 {
        font-size: 32px;
    }

    .about-hero-overlay h1 {
        font-size: 36px;
    }
}


/* ================= SERVICE CARDS ================= */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h2 {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ================= FADE-IN ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .services-container h1 {
        font-size: 2.2rem;
    }

    .service-card h2 {
        font-size: 1.3rem;
    }
}
/* SERVICES SECTION */ .services-section
 {
     background: url(../images/background.png) no-repeat center center;
    background-size: cover; /* Makes image cover the entire section */
    padding: 100px 60px;
    text-align: center;
 } 
 .services-section h2
  { 
    color: #ffffff; 
    font-size: 42px;
     margin-bottom: 10px; 
    } 
    .services-subtitle
     { 
        color: #f5e6a1; /* SOFT GOLD */ 
        font-size: 18px;
         margin-bottom: 60px; 
         font-style: italic; 
        } /* GRID */ 
        .services-grid 
        {
             display: grid;
              grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
              gap: 30px;
               max-width: 1200px;
                margin: auto; 
            } 
            /* SERVICE CARD */ 
            .service-card 
            { 
                border: 2px solid #d4af37; 
                padding: 45px 25px; 
                color: #ffffff;
                 background: rgba(255, 255, 255, 0.15); 
                 transition: all 0.35s ease;
                  border-radius: 8px; 
                } 
                /* ICON */ 
                .service-card .icon 
                { 
                    font-size: 38px; 
                    color: #d4af37; 
                    display: block;
                     margin-bottom: 18px;
                     }
                      /* TITLE */
                       .service-card h3 
                       {
                         font-size: 18px;
                          margin-bottom: 8px;
                         } 
                         /* DESCRIPTION */ 
                         .service-card p 
                         { 
                            font-size: 14px; 
                            color: #ffffff;
                         } 
                         /* HOVER EFFECT */
                          .service-card:hover
                           {
                             background: rgba(255, 255, 255, 0.25);
                              transform: translateY(-6px);
                            cursor: pointer;
                             }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
}

.contact-wrapper {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-right iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 8px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.subtitle span {
    color: #c9a24d;
    font-style: italic;
}

.success-message {
    display: none;
    background: #e6f4ea;
    color: #2e7d32;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-form .row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

input, textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
    font-size: 16px;
    outline: none;
}

input:focus, textarea:focus {
    border-bottom: 2px solid #c9a24d;
}

textarea {
    min-height: 120px;
    resize: none;
}

.full {
    margin-bottom: 30px;
}

.submit-btn {
    background: #c9a24d;
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #b18c3c;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #c9a24d;
    margin-right: 10px;
}

/* Mobile */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    padding: 25px;
    background: url(../images/background.png) center/cover;
    text-align: center;
    color: black;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
    }

    .about-container,
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin: 30px;
    }
}
