/* Root Variables */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&display=swap');
:root {
    --primary-orange: #e24f06;
    --primary-blue: #2979c4;
    --text-dark: #00227e;
    --text-light: #666;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}
html, body {
    overflow-x: hidden;
}


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

/* ============================================
   TOP HEADER - SKY BLUE
   ============================================ */
.top-header {
    /* background-color: #87CEEB; */
    background-color: rgb(1, 27, 66);
    padding: 0.3rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.01rem;
    color: white;
    font-size: 0.85rem;
    text-decoration: none;
}

/* MAIL ICON ORANGE COLOR */
.contact-item i.ri-mail-line {
    color: #FF8C00 !important;
    font-size: 1rem !important;
    display: inline-block !important;
    font-weight: 900;
}

.contact-item i.ri-map-pin-2-line {
    color: #FF8C00 !important;
    font-size: 1rem !important;
    display: inline-block !important;
    font-weight: 900;
}

.contact-item i {
    margin-right: 0.2rem;
}

.contact-item span {
    color: white;
    font-weight: 600;
}

.social-links-top {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.social-links-top a {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(1, 27, 66);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-top a i {
    font-size: 1.1rem !important;
    color: rgb(1, 27, 66) !important;
}

.social-links-top a:hover {
    background: #FF8C00;
    transform: translateY(-3px);
}

.social-links-top a:hover i {
    color: white !important;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background-color: white;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.nav-link:hover {
    color: #FF8C00;
}

.nav-link.active {
    color: #FF8C00;
    border-bottom: 2px solid #FF8C00;
}

.auth-btn {
    background: #FF8C00;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.auth-btn:hover {
    background: #E67E00;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION - REDESIGNED
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800&family=Barlow:wght@300;400;500&display=swap');

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5,5,5,0.92) 0%,
        rgba(20,12,0,0.85) 50%,
        rgba(5,5,5,0.88) 100%
    );
    z-index: 1;
}

/* Subtle grid texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,140,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,140,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

/* Left brand accent bar */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #FF8C00 30%, #FF8C00 70%, transparent);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 0 5rem;
    text-align: left;
}

/* Eyebrow label */
.hero-content::before {
    content: 'Srita Construction & Developers';
    display: flex;
    align-items: center;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FF8C00;
    margin-bottom: 1.5rem;
    gap: 12px;
}

.hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 8vw, 90px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 0.05em;
}

.hero-content h1 span {
    display: block;
    font-weight: 800;
    color: #FF8C00;
    margin-bottom: 0.4em;
}

.hero-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 2.5rem;
    border-left: 2px solid rgba(255,140,0,0.4);
    padding-left: 1rem;
}

/* Angled CTA button */
.hero-content .cta-button {
    display: inline-block;
    background: #FF8C00;
    color: #000000;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 48px 15px 32px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    transition: background 0.25s ease, transform 0.2s ease;
    border: none;
}

.hero-content .cta-button:hover {
    background: #e07a00;
    transform: translateX(4px);
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #FF8C00;
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
/* .about-preview {
    padding: 5rem 0;
    background: #f5f5f5;
}

.about-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.about-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    border-radius: 2px;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #FF8C00;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem !important;
    color: #FF8C00 !important;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
} */

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.about-preview {
    position: relative;
    padding: 110px 0;
    background: #0b1528;
    overflow: hidden;
}

.ap-blob1 {
    position: absolute; top: -120px; left: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(226,79,6,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.ap-blob2 {
    position: absolute; bottom: -150px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(41,121,196,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.ap-blob3 {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(41,121,196,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.ap-beam {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226,79,6,0.6), rgba(41,121,196,0.6), transparent);
}

.ap-inner { position: relative; z-index: 1; }

.ap-head { text-align: center; margin-bottom: 60px; }

.ap-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: #e24f06; margin-bottom: 16px;
}
.ap-tag-line { width: 32px; height: 1px; background: #e24f06; }

.about-preview h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800; text-transform: uppercase;
    color: #ffffff; line-height: 1;
    margin-bottom: 16px; letter-spacing: -0.01em;
}
.about-preview h2 em { color: #e24f06; font-style: normal; }

.ap-desc {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.45);
    max-width: 440px; margin: 0 auto; line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative; z-index: 1;
}

.feature-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 28px 36px;
    overflow: hidden; text-align: left;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(226,79,6,0.4);
}
.feature-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 16px;
    background: radial-gradient(ellipse at 30% 0%, rgba(226,79,6,0.12), transparent 60%);
    opacity: 0; transition: opacity 0.35s ease; z-index: 0;
}
.feature-card:hover::after { opacity: 1; }
.feature-card::before {
    content: ''; position: absolute;
    top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226,79,6,0.8), transparent);
    opacity: 0; transition: opacity 0.35s ease; z-index: 1;
}
.feature-card:hover::before { opacity: 1; }

.fc-ico {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(226,79,6,0.1);
    border: 1px solid rgba(226,79,6,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; position: relative; z-index: 1;
    transition: background 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover .fc-ico {
    background: rgba(226,79,6,0.22);
    border-color: rgba(226,79,6,0.5);
}
.fc-ico i { font-size: 1.5rem !important; color: #e24f06 !important; }

.feature-card h3 {
    font-size: 1.05rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: #ffffff; margin-bottom: 8px;
    position: relative; z-index: 1;
}
.fc-rule {
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #e24f06, #2979c4);
    margin-bottom: 14px; border-radius: 1px;
    position: relative; z-index: 1;
    transition: width 0.35s ease;
}
.feature-card:hover .fc-rule { width: 50px; }

.feature-card p {
    font-size: 13.5px; font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8; position: relative; z-index: 1;
}
.feature-card:hover p { color: rgba(255,255,255,0.65); }

.ap-trust {
    display: flex; margin-top: 56px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; overflow: hidden;
    position: relative; z-index: 1;
}
.ap-trust-item {
    flex: 1; display: flex; align-items: center;
    gap: 14px; padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
}
.ap-trust-item:last-child { border-right: none; }
.ap-trust-item:hover { background: rgba(255,255,255,0.03); }
.ap-trust-item i { font-size: 1.3rem !important; color: rgba(226,79,6,0.8) !important; flex-shrink: 0; }
.ap-trust-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px;
}
.ap-trust-val { font-size: 14px; font-weight: 600; color: #ffffff; }

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .ap-trust { flex-wrap: wrap; }
    .ap-trust-item { flex: 1 1 48%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .ap-trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 540px) {
    .features-grid { grid-template-columns: 1fr; }
    .ap-trust-item { flex: 1 1 100%; border-right: none; }
    .ap-trust-item:nth-child(odd) { border-right: none; }
}


/* ============================================
   SERVICES PREVIEW
   ============================================ */
 .services-preview {
    padding: 5rem 0;
    background:rgb(247, 225, 195);
}




/* Subtle dot-grid texture */
.services-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;        /* reduced — eyebrow sits above now */
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* .service-card {
    background: rgba(255, 140, 0, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
} */

.service-card {
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255); /* text visible on image */

    opacity: 0;
    transition: all 0.8s ease;
}


.service-card:hover {
    border-color: #ff7700;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.5rem !important;
    color: white !important;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    color: white;


}

.service-card p {
    color: #f0f0f0;
}

/* ============================================
   SERVICE SCROLL ANIMATION
============================================ */

/* .service-card {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

Left */
/* .service-card:nth-child(1) {
    transform: translateX(-120px);
} */

/* Bottom */
/* .service-card:nth-child(2) {
    transform: translateY(120px);
} */

/* Right */
/* .service-card:nth-child(3) {
    transform: translateX(120px);
} */

/* When Visible */
/* .service-card.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
} */

.service-card {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Left */
.service-card:nth-child(1) {
    transform: translateX(-120px);
}

/* Bottom */
.service-card:nth-child(2) {
    transform: translateY(120px);
}

/* Right */
.service-card:nth-child(3) {
    transform: translateX(120px);
}

.service-card.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
.service-card:nth-child(1) {
    background-image: url('assets/images/service1.webp');
}

.service-card:nth-child(2) {
    background-image: url('assets/service2.webp');
}

.service-card:nth-child(3) {
    background-image: url('assets/images/service3.webp');
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 6, 2, 0.88) 0%,
        rgba(10, 6, 2, 0.42) 50%,
        rgba(10, 6, 2, 0.10) 100%
    );
    z-index: 0;
    transition: background 0.4s ease;
}

.service-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(180, 70, 10, 0.85) 0%,
        rgba(10, 6, 2, 0.42) 55%,
        rgba(10, 6, 2, 0.08) 100%
    );
}

.service-card * {
    position: relative;
    z-index: 1;
}

.sp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e24f06;
    margin-bottom: 10px;
}

.sp-eyebrow-line {
    width: 28px;
    height: 1px;
    background: #e24f06;
}

.services-highlight {
    color: #e24f06;
}


/* ============================================
   RECENT PROJECTS
   ============================================ */
.recent-projects {
    padding: 5rem 0;
    background: linear-gradient(rgb(196, 228, 251),rgb(2, 147, 187),rgb(0, 1, 1));;
}

.recent-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.recent-projects h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* .project-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
} */

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


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

.project-card:hover .project-image img {
    transform: scale(1.1);
}


/* .project-card:hover .project-image {
    transform: scale(1.05);
} */

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-info p {
    color: var(--text-light);
}

.project1 {
    background-image: url('assets/images/officeBG.webp');
}

.project2 {
    background-image: url('assets/images/residenceBG.jpg');
}

.project3 {
    background-image: url('assets/images/societyBG.jpeg');
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.service-card * {
    position: relative;
    z-index: 1;
}




/* ============================================
   CTA SECTION
   ============================================ */
/* .cta-section {
    background: linear-gradient(135deg, #FF8C00 0%, #87CEEB 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
} */
/* ============================================
   CTA SECTION WITH VIDEO BACKGROUND
============================================ */

.cta-section {
    position: relative;
    padding: 6rem 0; /* keeps your spacing */
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Background Video */
.cta-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Content */
.cta-content {
    position: relative;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section h2 span {
    color: #e24f06;
}

.cta-section p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.2rem;
    letter-spacing: 0.03em;
}

.cta-section .cta-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 42px;
    border-radius: 35px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    background: #e24f06;
    border-color: #e24f06;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h4 {
    color: #FF8C00;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #FF8C00;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF8C00, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-links a i {
    font-size: 1.2rem !important;
    color: white !important;
}

.social-links a:hover {
    transform: scale(1.1);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
    }

    .nav-link.active {
        border-bottom: none;
        color: #FF8C00;
    }

    .hero {
        height: 400px;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-preview h2,
    .services-preview h2,
    .recent-projects h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .social-links-top {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        padding: 1.5rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 1.8rem !important;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-item span {
        display: none;
    }

    .contact-item {
        gap: 0.5rem;
    }

    .contact-item i {
        font-size: 1.2rem !important;
    }

    .social-links-top {
        gap: 0.8rem;
    }

    .social-links-top a {
        width: 28px;
        height: 28px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem !important;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .auth-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Fix: Move contact info more to the left */
.top-header .header-container {
    max-width: 100%;
    margin: 0;
    padding-left: 50px;  /* adjust this value if needed */
    padding-right: 50px;
}


/* ============================================
   PREMIUM LOGO STYLING
   ============================================ */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-left: 20px;
}


.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.15;
    gap: 1px;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0;
    line-height: 1.1;
    color: #0d2b6e;
}

.logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 3px;
    color: #c49a0a;
    text-align: center;
    width: 100%;
}

/* Brand Colors */
.logo-sri {
    color: #011238;
}

.logo-ta {
    color: #ba9007;
}

/* Tablet */
@media (max-width: 768px) {
    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }

    .logo i {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-main {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .logo-sub {
        font-size: 0.48rem;
        letter-spacing: 2px;
    }

    .logo i {
        font-size: 1.5rem;
    }
}

/* ============================================
   IMAGE LOGO STYLING
   ============================================ */


.logo-img {
    height: 82px;
    width: auto;
    display: block;
    margin-top: 0;
    filter: drop-shadow(0 2px 6px rgba(13,43,110,0.15));
}

/* Tablet */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 38px;
    }
}

/* Shift navbar content slightly left */
.navbar .nav-container {
    max-width: 100%;
    margin: 0;
    padding-left: 15px;   /* control left shift here */
    padding-right: 20px;
}
/* ============================================
   SCROLL ENTRANCE ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: opacity, transform;
}

.reveal.from-bottom {
    transform: translateY(55px);
}

.reveal.from-left {
    transform: translateX(-55px);
}

.reveal.from-right {
    transform: translateX(55px);
}

.reveal.show {
    opacity: 1;
    transform: translate(0, 0);
}

/* FIX: sections must NOT have overflow:hidden
   as it traps the IntersectionObserver root */
.about-preview,
.services-preview,
.recent-projects,
.cta-section,
.footer {
    overflow: visible;
}

/* Only the pseudo-element decorations need clipping, not the section itself */
.about-preview {
    overflow: hidden;
}
/* ============================================
   HERO ENTRY ANIMATIONS - PAGE LOAD
   ============================================ */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Eyebrow label — fades in first */
.hero-content::before {
    animation: heroFadeIn 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

/* Main heading — slides up */
.hero-content h1 {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Paragraph — slides up slightly after */
.hero-content p {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.55s;
    opacity: 0;
}

/* Button — slides in from left */
.hero-content .cta-button {
    animation: heroSlideLeft 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Stats row — fades up last */
.hero-stats {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

/* Each stat number staggers */
.hero-stats > div:nth-child(1) {
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 1.05s;
    opacity: 0;
}

.hero-stats > div:nth-child(2) {
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.hero-stats > div:nth-child(3) {
    animation: heroFadeUp 0.7s ease forwards;
    animation-delay: 1.35s;
    opacity: 0;
}
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 1.9rem !important;
    color: #ffffff !important;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Pulse ring animation */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 4px 20px rgba(37,211,102,0.35); }
    60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.35); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.35); }
}

/* Tooltip label */
.whatsapp-float::before {
    content: 'Chat with us';
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(6px);
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float i { font-size: 1.6rem !important; }
    .whatsapp-float::before { display: none; }
}