/* =======================
   GLOBAL STYLES
======================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
}

/* =======================
   NAVBAR
======================= */
.navbar { 
    position: fixed;
    top: 0;
    width: 100%;
    height: 65px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    z-index: 9999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
}

.logo-img {
    height: 65px; /* ✅ Bigger - was 55px */
    width: auto;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

.navbar nav {
    display: flex;
    gap: 20px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #c9a14a;
}

/* =======================
   HERO (CONTINUOUS ZOOM ANIMATION)
======================= */
.hero {
    height: 70vh;
    padding-top: 65px;
    background-image: url("images/hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    position: relative;
    animation: continuousZoom 8s ease-in-out infinite;
}

@keyframes continuousZoom {
    0% { background-size: 85%; }
    50% { background-size: 115%; }
    100% { background-size: 85%; }
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* =======================
   ABOUT
======================= */
.about-company {
    padding: 80px 15%;
    background: white;
}

.about-company h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-company p {
    font-size: 18px;
    line-height: 1.8;
}

/* ✅ BULLET LIST STYLING */
.bullet-list {
    list-style-type: disc !important;
    list-style-position: outside !important;
    margin-left: 40px !important;
    padding-left: 0 !important;
}

.bullet-list li {
    display: list-item !important;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* =======================
   SERVICES
======================= */
.services {
    padding: 100px 10%;
    background: #f6f6f6;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* FLIP CARDS */
.service-card {
    perspective: 1200px;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

.service-front {
    background-size: cover;
    background-position: center;
}

.service-front::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.service-front h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 2;
}

.service-back {
    background: #111;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

/* =======================
   FOUNDER (NO WHITE SPACE - CLEAN IMAGE)
======================= */
.founder {
    padding: 100px 10%;
    background: white;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    width: 100%;
    line-height: 0;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    vertical-align: top;
}

.founder-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.founder-text h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.founder-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #c9a14a;
}

.founder-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.founder-text ul {
    margin: 20px 0 35px 40px;
    padding: 0;
    list-style: disc !important;
}

.founder-text ul li {
    display: list-item !important;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 16px;
    color: #444;
}

/* =======================
   CONTACT
======================= */
.contact {
    padding: 100px 10%;
    background: #111;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #c9a14a;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #1c1c1c;
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
}

.contact-icon {
    margin-bottom: 20px;
    color: #c9a14a;
}

.contact-icon svg {
    stroke: #c9a14a;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: #ccc;
    font-size: 16px;
}

/* =======================
   MODAL POPUP (FOR SERVICE CARDS)
======================= */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #c9a14a;
}

.modal-content h2 {
    color: #c9a14a;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}