:root {
    --primary-color: #F5A623;
    /* Golden Amber from logo */
    --primary-dark: #D4891A;
    --secondary-color: #1a1a1a;
    /* Black from logo */
    --accent-color: #1B3A5C;
    /* Dark Navy Blue from logo solar panels */
    --text-dark: #222222;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #111;
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

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

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

.btn-secondary:hover {
    background-color: var(--white);
    color: #111;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.grid {
    display: grid;
    gap: 30px;
}

.highlight {
    color: var(--primary-color);
}

.bg-light {
    background-color: var(--gray-light);
}

.bg-dark {
    background-color: var(--secondary-color);
}

.text-white {
    color: var(--white);
}

/* Navbar */
.navbar {
    background-color: #000000;
    color: #f4f4f4;
    padding: 3px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: #e0e0e0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: #111 !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
}

.btn-nav:hover {
    background-color: var(--white);
    color: #111 !important;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown>a .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.open>a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #444;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--primary-dark);
    border-left-color: var(--primary-color);
    padding-left: 24px;
}

.dropdown-menu li a i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 6px 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoomIn 20s ease forwards;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.15);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background-color: var(--gray-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Project Showcase */
.project-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.project-img-wrapper {
    overflow: hidden;
}

.placeholder-img {
    transition: var(--transition);
}

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

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.project-info .date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Why Love Us */
.rating-badge {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #ffb700;
}

.rating-badge span {
    color: var(--text-dark);
    margin-left: 10px;
    font-weight: 700;
}

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

.testimonial-card {
    background: #fdfdfd;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.client-name {
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
}

/* Service Areas */
.service-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.service-areas-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-areas-list i {
    color: var(--primary-color);
}

/* Contact */
.contact-section {
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

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

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        /* Hidden */
        transition: var(--transition);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        /* Visible */
    }

    .nav-dropdown>a .fa-chevron-down {
        font-size: 0.6rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: unset;
        background: rgba(0, 0, 0, 0.03);
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 8px;
        padding: 5px 0;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu {
        max-height: 400px;
        transform: none;
    }

    .dropdown-menu li a {
        padding: 8px 15px;
        font-size: 0.88rem;
    }

    .dropdown-menu li a:hover {
        padding-left: 18px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }
}

/* Gallery Page Styles */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .overlay {
    height: 100%;
}

.gallery-item .text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* Services Page Styles */
.services-header {
    text-align: center;
    color: var(--white);
    padding: 120px 0 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

.services-intro-text {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 50px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.service-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.25);
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 6px 0;
    color: #555;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Clickable Service Cards */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card-action {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card-action i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover .service-card-action i {
    transform: translateX(5px);
}

/* Service Detail Link */
.service-detail-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-detail-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.35);
}

.service-detail-link i {
    margin-right: 6px;
}

/* Enquiry Form */
.enquiry-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.enquiry-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.enquiry-contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.enquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #444;
    font-size: 0.95rem;
}

.enquiry-contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.enquiry-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.btn-enquiry:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-enquiry i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .enquiry-form {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .service-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

    .service-features li {
        justify-content: center;
    }
}

/* About Page Styles */
.about-header {
    text-align: center;
    color: var(--white);
    padding: 120px 0 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* CEO Quote Section */
.ceo-quote-section {
    background: var(--gray-light);
}

.ceo-quote-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.ceo-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ceo-image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.ceo-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.quote-block {
    position: relative;
    padding: 10px 0;
}

.giant-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 6rem;
    line-height: 0;
    color: var(--primary-color);
    opacity: 0.5;
    display: block;
    margin-bottom: 10px;
}

.giant-quote.closing {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 0;
}

.quote-body {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
    padding: 0 10px;
}

.quote-invite {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
    padding: 0 10px;
    margin-bottom: 5px;
}

.ceo-attribution {
    margin-top: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
    padding-top: 5px;
    padding-bottom: 5px;
}

.ceo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.ceo-title {
    font-size: 0.95rem;
    color: #888;
    margin-top: 2px;
}

/* Fade-Up Animations */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeUp {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mission-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.12);
}

.mission-card h3 {
    margin-bottom: 12px;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.mission-card p {
    color: #555;
    line-height: 1.7;
}

.about-services-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.about-service-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid #eee;
}

.about-service-item:last-child {
    border-bottom: none;
}

.about-service-icon {
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.25);
}

.about-service-content h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.about-service-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

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

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: block;
}

.why-item h4 {
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.why-item p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--white);
    padding: 80px 0;
}

.about-cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
}

.active-link {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .ceo-quote-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ceo-image-col {
        max-width: 300px;
        margin: 0 auto;
    }

    .ceo-photo {
        height: 350px;
    }

    .giant-quote {
        font-size: 4rem;
    }

    .about-header h1 {
        font-size: 2.2rem;
    }

    .about-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-cta h2 {
        font-size: 1.7rem;
    }

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