

  
:root {
    --primary: #111111;
    --secondary: #d4af37; /* Gold */
    --accent: #c9a032; /* Darker gold for hover */
    --light: #f9f7f2; /* Cream/off-white */
    --dark: #000000;
    --text: #333333;
    --text-light: #777777;
    --gold-gradient: linear-gradient(135deg, #f2d264 0%, #d4af37 100%);
    --dark-gradient: linear-gradient(135deg, #111111 0%, #333333 100%);
    --font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em; /* Perfect vertical alignment */
    fill: currentColor; /* Inherits parent text color */
  }
  
  .feature-icon .icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  
  .contact-icon .icon {
    width: 1rem;
    height: 1rem;
  }
  

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}
/* Global safety‑net */

a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}
/* Add this to your existing CSS */
.btn-explore {
    padding: 1.2rem 2.5rem; /* Bigger padding for larger size */
    font-size: 1.2rem; /* Larger text */
    background: var(--gold-gradient); /* Gold gradient background */
    color: var(--primary); /* Dark text for contrast */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); /* Gold glow effect */
    position: relative; /* For hover effect */
    z-index: 1; /* Ensure it stays above other elements */
    margin-right: 1.5rem; /* Space between buttons */
}

.btn-explore:hover {
    transform: translateY(-3px) scale(1.02); /* More pronounced hover effect */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); /* Enhanced glow on hover */
    background: linear-gradient(135deg, #f8e073 0%, #dbb437 100%); /* Brighter gold on hover */
}

.btn-explore::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: inherit;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-explore:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

/* Optional: Add animation for extra attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-explore {
    animation: pulse 2s infinite;
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.mv-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 0;
    border-top: 4px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mv-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.mv-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.mv-card ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.mv-card li {
    margin-bottom: 0.8rem;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0;
}

.value-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-us {
    text-align: center;
    margin: 5rem 0;
}

.why-choose-us h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* CTA */
.about-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--light);
    border-radius: 0;
}

.about-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-cta p {
    margin-bottom: 2rem;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary);
    color: black;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    color: black;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #222;
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    color: black;
}

/* Header */
header {
    background-color: var(--primary);
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.logo span {
    color: var(--secondary);
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60px;
    background-color: var(--secondary);
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background-color: var(--light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--secondary);
}

.program-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-content {
    padding: 1.5rem;
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.program-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.program-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.program-card li {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--primary);
    text-align: center;
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials p {
    color: rgba(255,255,255,0.8);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

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

/* CTA Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: var(--gold-gradient);
    color: black;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: black;
}

.cta .btn {
    background-color: black;
    color: var(--secondary);
}

.cta .btn:hover {
    background-color: #222;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-right: 1rem;
    min-width: 20px;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30px;
    background-color: var(--secondary);
}

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

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

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

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    list-style: none;
    margin-top: 1rem;
}

.social-links li {
    margin-right: 1rem;
}

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

.social-links a:hover {
    background-color: var(--secondary);
    color: black;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Gold accents and luxury elements */
.gold-accent {
    color: var(--secondary);
}

.divider {
    height: 1px;
    width: 100%;
    background: var(--gold-gradient);
    margin: 2rem 0;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .programs-grid,
    .testimonial-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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


    .programs-grid,
    .testimonial-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

}
/* Global text overflow prevention */
.container * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

p, h1, h2, h3, h4, h5 {
    max-width: 100%;
    overflow-wrap: break-word;
}
/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Mimic about-us grid */
    gap: 2rem;
    align-items: start;
    box-sizing: border-box;
}

.about-content {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.about-content p, .about-content h2, .about-content h3 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.about-content .feature-box {
    display: grid; /* Switch from flex to grid for better control */
    grid-template-columns: auto 1fr; /* Icon | Text */
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-box > div {
    max-width: 100%;
    overflow-wrap: break-word;
}

.about-content .btn-primary {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.8rem 1.2rem;
    box-sizing: border-box;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--light);
}

/* Mobile tweaks for About section */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1 Brunswick; /* Single column */
        gap: 1.5rem;
        padding: 0;
    }

    .about-content {
        max-width: 100%;
        padding: 0 0.5rem;
        overflow: hidden;
    }

    .about-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
        order: -1;
    }

    .feature-box {
        grid-template-columns: auto 1fr;
        gap: 0.8rem;
    }

    .about-content .btn-primary {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Reinforce container constraints */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
}