/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    background:#0b1224;
    padding:15px 0;
    z-index:1000;
}

.nav-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 4px;  /* reduced from 10px for tighter branding */
}

}

.logo-area img{
    width:40px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#38bdf8;
}

.menu{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* HERO */
.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#1e293b);
}

.hero h1{
    font-size:45px;
}

.hero span{
    color:#38bdf8;
}

.hero p{
    margin:10px 0;
    color:#cbd5e1;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#38bdf8;
    color:#000;
    border-radius:8px;
    margin:10px;
    text-decoration:none;
    font-weight:600;
}

.btn.outline{
    background:transparent;
    border:2px solid #38bdf8;
    color:#fff;
}

/* SECTIONS */
.section{
    padding:80px 10%;
    text-align:center;
}

.dark{
    background:#0b1224;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.card{
    background:#111c36;
    padding:20px;
    border-radius:12px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* PORTFOLIO */
.portfolio{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
    margin-top:30px;
}

.portfolio img{
    width:100%;
    border-radius:10px;
}

/* CTA */
.cta{
    padding:60px;
    background:#38bdf8;
    color:#000;
    text-align:center;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    background:#0b1224;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    padding:15px;
    border-radius:50%;
    font-size:20px;
    text-decoration:none;
    color:#fff;
}

/* MOBILE */
@media(max-width:768px){
    .nav-links{
        display:none;
        flex-direction:column;
        background:#0b1224;
        position:absolute;
        top:70px;
        right:20px;
        padding:20px;
        border-radius:10px;
    }

    .nav-links.active{
        display:flex;
    }

    .menu{
        display:block;
    }

    .hero h1{
        font-size:30px;
    }
}

/* PORTFOLIO SCROLL CONTAINER */
.portfolio-wrapper{
    overflow:hidden;
    margin-top:30px;
}

/* MOVING TRACK */
.portfolio-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation: scrollLeft 20s linear infinite;
}

/* IMAGES */
.portfolio-track img{
    width:250px;
    height:180px;
    border-radius:12px;
    object-fit:cover;
    transition:0.3s;
}

.portfolio-track img:hover{
    transform:scale(1.05);
}

/* ANIMATION */
@keyframes scrollLeft{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* PORTFOLIO SCROLL CONTAINER */
.portfolio-wrapper{
    overflow:hidden;
    margin-top:30px;
    background:#433a3f; /* your base brand color */
    padding:20px;
    border-radius:12px;
}

/* MOVING TRACK */
.portfolio-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation: scrollLeft 25s linear infinite;
}

/* IMAGES */
.portfolio-track img{
    width:250px;
    height:180px;
    border-radius:12px;
    object-fit:cover;
    border:3px solid #3d5a6c; /* brand border */
    transition:0.3s ease;
}

.portfolio-track img:hover{
    transform:scale(1.05);
    border-color:#8de969;
    box-shadow:0 0 15px rgba(125, 233, 105, 0.4);
}

/* ANIMATION */
@keyframes scrollLeft{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* ===== COLOR OVERRIDE (NEW PALETTE) ===== */

body{
    background:#222e50;
    color:#ffffff;
}

/* NAVBAR */
.navbar{
    background:#1b2644;
}

/* LINKS */
.nav-links a{
    color:#ffffff;
}

.nav-links a:hover{
    color:#e9d985;
}

/* HERO */
.hero{
    background:linear-gradient(135deg, #222e50, #1b2644);
}

.hero span{
    color:#e9d985;
}

.hero p{
    color:#bcd8c1;
}

/* BUTTONS */
.btn{
    background:#007991;
    color:#ffffff;
}

.btn:hover{
    background:#439a86;
}

.btn.outline{
    border:2px solid #007991;
    color:#ffffff;
}

.btn.outline:hover{
    background:#007991;
}

/* SECTIONS */
.dark{
    background:#1b2644;
}

/* CARDS */
.card{
    background:#bcd8c1;
    color:#222e50;
}

.card:hover{
    background:#439a86;
    color:#ffffff;
}

/* PORTFOLIO BORDER (if used) */
.portfolio-track img{
    border:3px solid #007991;
}

.portfolio-track img:hover{
    border-color:#e9d985;
}

/* CTA */
.cta{
    background:#007991;
    color:#ffffff;
}

/* FOOTER */
footer{
    background:#1b2644;
    color:#bcd8c1;
}

/* WHATSAPP BUTTON (optional blend) */
.whatsapp{
    background:#007991;
}  .hero h1 {
    font-size: 3rem;      /* scale up slightly */
    line-height: 1.2;
}

.hero h1 span {
    font-size: 3.2rem;    /* Bold text slightly larger */
}  .site-logo {
    width: 70px;   /* adjust size here */
    height: auto;
}

/* ===== Logo Scaling Fix ===== */
.site-logo {
    width: 75px;   /* Perfect size (you can increase or reduce) */
    height: auto;  /* Prevents distortion */
}

/* FORCE LOGO SIZE */
.navbar .site-logo,
.logo-area .site-logo {
    width: 80px !important;
    height: auto !important;
}

/* ABOUT SECTION CENTER POLISH */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#about p {
    max-width: 750px;
    line-height: 1.7;
    margin: 0 auto;
}

/* ===== PREMIUM ABOUT SECTION POLISH (Structure Safe) ===== */

/* Center everything cleanly */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0; /* For animation */
}

/* Make the paragraph beautifully centered and readable */
#about p {
    max-width: 750px;
    line-height: 1.75;
    font-size: 1.05rem;
    margin: 0 auto;
}

/* Soft background glow behind About section */
#about::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: -1;
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#about {
    position: relative; /* REQUIRED for the glow to appear */
}

/* Center Everything */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

/* Beautiful readable paragraph */
#about p {
    max-width: 750px;
    line-height: 1.75;
    font-size: 1.05rem;
    margin: 0 auto;
}

/* Soft Glow Behind About */
#about::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: -1;
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1);
    }
}

/* Corrected ABOUT section */
#about {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

/* Paragraph styling */
#about p {
    max-width: 750px;
    line-height: 1.75;
    font-size: 1.05rem;
    margin: 0 auto;
}

/* Soft glow */
#about::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: -1;
}

/* Animation FIXED */
@keyframes fadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* FINAL FIX — Force About Section to Center Properly */
#about.section,
#about {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

#about p {
    max-width: 750px !important;
    margin: 0 auto !important;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Hero Background with City Image + Dark Blend */
.hero {
    background: 
        linear-gradient(rgba(23, 27, 35, 0.75), rgba(23, 27, 35, 0.75)),
        url("images/city");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* HERO SECTION FIX — Background Image + Better Scaling + Reduced Bottom Gap */
.hero {
    padding: 120px 20px 80px; /* Remove large bottom gap */
    text-align: center;
    background:
        linear-gradient(rgba(23, 27, 35, 0.7), rgba(23, 27, 35, 0.7)),
        url("images/city.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

/* Scale hero text */
.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.hero h1 span {
    font-size: 3.2rem;
    font-weight: 700;
}

/* Scale subtext */
.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Scale hero buttons */
.hero-btns .btn {
    padding: 14px 30px;
    font-size: 1rem;
    margin: 10px;
}


/* ===============================
   HERO SECTION (FIXED + PREMIUM)
================================*/

.hero {
    position: relative;
    min-height: 85vh;
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;

    /* Background Image */
    background: url("images/city.jpg") center/cover no-repeat;
}

/* Light blending overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65); /* soft dark glass effect */
    z-index: 1;
}

/* Content stays above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Heading */
.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
}

.hero-content h1 span {
    color: #8de969;
}

/* Paragraph */
.hero-content p {
    font-size: 1.2rem;
    margin-top: 12px;
    color: #e2e8f0;
    opacity: 0.95;
}

/* Buttons */
.hero-btns {
    margin-top: 30px;
}

.hero .btn {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 6px;
}

#contact {
    text-align: center;
    padding: 80px 20px;
}

.contact-info {
    margin-top: 20px;
    line-height: 2;
    color: #e2e8f0;
}

.contact-info p {
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: #1b2644;
    color: #bcd8c1;
}

/* =========================
   CONTACT SECTION
========================= */

#contact {
    text-align: center;
    padding: 80px 20px;
}

.contact-info {
    margin-top: 20px;
    line-height: 2;
    color: #e2e8f0;
}

.contact-info p {
    font-size: 1.1rem;
}

/* =========================
   FOOTER SECTION
========================= */

footer {
    text-align: center;
    padding: 30px 20px;
    background: #1b2644;
    color: #bcd8c1;
}

.divider {
    width: 80%;
    margin: 40px auto;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Space separator before copyright */
.footer-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto;
}

/* Make copyright stand alone */
.copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FOOTER LAYOUT FIX */
footer {
    text-align: center;
    padding: 40px 20px;
    background: #1b2644;
    color: #bcd8c1;
}

/* TITLE */
.footer-title {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* CONTACT INFO BLOCK */
.footer-info {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* DIVIDER LINE */
.footer-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto;
}

/* COPYRIGHT STANDALONE */
.copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}
