/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== HEADER ===== */

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:200px;
}

.logo-text h2{
    color:#0A3D91;
    font-size:28px;
    font-weight:800;
}

.logo-text span{
    color:#FF6B00;
    font-size:13px;
    font-weight:700;
}

.navbar{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#FF6B00;
}

.quote-btn{
    background:#FF6B00;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#e65a00;
}


/* ================= HERO SLIDER ================= */

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
    margin-top:80px;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-text{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:700px;
    color:#fff;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    background:#FF6B00;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:64px;
    line-height:1.15;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:#FF6B00;
}

.hero-text p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-orange{
    background:#FF6B00;
    color:#fff;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-white{
    background:#fff;
    color:#0A3D91;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:768px){

.hero-text h1{
    font-size:40px;
}

.hero-text p{
    font-size:16px;
}

.hero-text{
    left:5%;
    right:5%;
}
}

/* ================= WHY CHOOSE US ================= */

.why-us {
    padding: 100px 0;
    background: #f8f9fb;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header span {
    color: #FF6B00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    color: #0A3D91;
    margin: 15px 0;
}

.section-header p {
    color: #666;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card i {
    font-size: 42px;
    color: #FF6B00;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #0A3D91;
    margin-bottom: 12px;
}

/* ================= STATS ================= */

.stats {
    background: #0A3D91;
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box h2 {
    font-size: 48px;
    color: #FF6B00;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
}


/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    display: inline-block;
    color: #FF6B00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    color: #0A3D91;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature i {
    color: #FF6B00;
    font-size: 18px;
}

.btn-orange {
    display: inline-block;
    background: #FF6B00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-orange:hover {
    background: #e55d00;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

/* ================= SERVICES ================= */

.services-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title span {
    color: #FF6B00;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    color: #0A3D91;
    margin: 15px 0;
}

.section-title p {
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.service-card i {
    font-size: 42px;
    color: #FF6B00;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0A3D91;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card a {
    color: #FF6B00;
    font-weight: 600;
    text-decoration: none;
}

/* ================= FEATURED PROJECTS ================= */

.projects-section {
    padding: 100px 0;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.project-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 61, 145, 0.9),
        rgba(10, 61, 145, 0.15)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}

.project-overlay h3 {
    margin-bottom: 8px;
    font-size: 24px;
}

.project-overlay p {
    font-size: 15px;
    opacity: 0.95;
}

.projects-btn {
    text-align: center;
    margin-top: 40px;
}

/* ================= CTA SECTION ================= */

.cta-section {
    background: linear-gradient(135deg, #0A3D91, #123d8b);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================= FOOTER ================= */

.footer {
    background: #081f4d;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #FF6B00;
}

.footer-column p,
.footer-column li,
.footer-column a {
    color: #ddd;
    line-height: 1.9;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a:hover {
    color: #FF6B00;
}

.footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    color: #bbb;
}

.testimonials-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.testimonial-card h4 {
    margin-top: 20px;
    color: #0A3D91;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}

#scrollTopBtn{
    position:fixed;
    bottom:95px;
    right:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#FF6B00;
    color:#fff;
    cursor:pointer;
    display:none;
    z-index:999;
}

.premium-faq{
    padding:120px 0;
    background:#f8fafc;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:16px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:25px 30px;
    font-size:18px;
    font-weight:600;
    color:#0A3D91;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
}

.faq-answer{
    padding:0 30px 25px;
    color:#555;
    line-height:1.8;
}

/* ================= TRUST SECTION ================= */

.trust-section{
    padding:120px 0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.trust-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.trust-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.trust-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#0A3D91;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.trust-card h3{
    color:#0A3D91;
    margin-bottom:15px;
    font-size:22px;
}

.trust-card p{
    color:#666;
    line-height:1.8;
}

/* ================= MOBILE NAVIGATION ================= */

.menu-toggle {
    display: none;
    font-size: 32px;
    color: #0A3D91;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .navbar.active {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        text-decoration: none;
        color: #0A3D91;
        font-weight: 600;
        border-bottom: 1px solid #eee;
    }

    .quote-btn {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
        padding: 14px;
    }
}

/* ================= MOBILE HERO ================= */

@media (max-width: 768px) {

    .hero-slider {
        height: 85vh;
    }

    .hero-text {
        left: 20px;
        right: 20px;
        max-width: 100%;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .slide img {
        object-fit: cover;
        object-position: center;
    }
}

/* ================= SLIDER CONTROLS ================= */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #FF6B00;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #FF6B00;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .prev {
        left: 12px;
    }

    .next {
        right: 12px;
    }
}

.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #FF6B00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-card h3 {
    color: #0A3D91;
    margin-bottom: 12px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ================= PAGE HERO ================= */

.page-hero{
    background: linear-gradient(rgba(10,61,145,.8), rgba(10,61,145,.8)),
                url('../images/slider1.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 20px 100px;
    text-align: center;
    color: #fff;
}

.page-hero h1{
    font-size: 56px;
    margin-bottom: 20px;
}

.page-hero p{
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}

@media(max-width:768px){

    .page-hero{
        padding: 120px 20px 80px;
    }

    .page-hero h1{
        font-size: 36px;
    }

}

/* ================= VISION & MISSION ================= */

.vision-mission-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid #FF6B00;
}

.vm-card:hover {
    transform: translateY(-8px);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: #0A3D91;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 28px;
    color: #0A3D91;
    margin-bottom: 15px;
}

.vm-card p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* ================= WHY SEGTECH ================= */

.why-segtech {
    padding: 110px 0;
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

.why-segtech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid transparent;
}

.why-box:hover {
    transform: translateY(-10px);
    border-bottom-color: #FF6B00;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #0A3D91;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.why-box h3 {
    color: #0A3D91;
    font-size: 22px;
    margin-bottom: 15px;
}

.why-box p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .why-segtech {
        padding: 80px 0;
    }

    .why-box {
        padding: 30px 20px;
    }
}

/* ================= OUR STRENGTHS ================= */

.strengths-section {
    padding: 110px 0;
    background: #ffffff;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.strength-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fc);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.strength-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0A3D91, #144db3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.strength-card h3 {
    color: #0A3D91;
    font-size: 22px;
    margin-bottom: 15px;
}

.strength-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}


/* ================= MEET SEGTECH ================= */

.meet-segtech {
    padding: 100px 0;
    background: #ffffff;
}

.meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.meet-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.meet-content h2 {
    font-size: 42px;
    color: #0A3D91;
    margin: 15px 0 20px;
}

.meet-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.meet-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: #FF6B00;
}

@media (max-width: 768px) {
    .meet-grid {
        grid-template-columns: 1fr;
    }

    .meet-content h2 {
        font-size: 32px;
    }

    .meet-highlights {
        grid-template-columns: 1fr;
    }
}

/* ================= PROJECT GALLERY ================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-tag {
    display: inline-block;
    background: #FF6B00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-info h3 {
    color: #0A3D91;
    margin-bottom: 8px;
}

.project-info p {
    color: #666;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= IMAGE MODAL ================= */

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.modal-prev {
    left: 25px;
}

.modal-next {
    right: 25px;
}

.modal-prev:hover,
.modal-next:hover {
    background: #FF6B00;
}

@media (max-width: 768px) {
    .modal-prev,
    .modal-next {
        width: 45px;
        height: 45px;
    }
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.project-card img {
    cursor: zoom-in;
}

.modal-prev:hover,
.modal-next:hover,
.modal-close:hover {
    transform: scale(1.1);
    transition: 0.2s ease;
}


/* ================= CONTACT PAGE ================= */

.contact-info-section,
.contact-section,
.business-hours {
    padding: 100px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-card i {
    font-size: 40px;
    color: #FF6B00;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.contact-form-box button {
    border: none;
    cursor: pointer;
}

.map-box iframe {
    min-height: 500px;
    border-radius: 15px;
}

.hours-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.hours-card p {
    margin: 15px 0;
    font-size: 17px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-box iframe {
        min-height: 350px;
    }
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-header{
    margin-bottom:30px;
}

.form-header h2{
    margin:10px 0;
    color:#0A3D91;
}

.form-header p{
    color:#666;
    line-height:1.7;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group textarea{
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:inherit;
    font-size:15px;
    transition:border-color .3s ease, box-shadow .3s ease;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#0A3D91;
    box-shadow:0 0 0 3px rgba(10,61,145,.12);
}

.form-submit-btn{
    width:100%;
    margin-top:10px;
}

.contact-divider{
    text-align:center;
    margin:30px 0 20px;
    color:#888;
    font-weight:600;
}

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:15px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:opacity .3s ease;
}

.btn-whatsapp:hover{
    opacity:.9;
}

.whatsapp-cta p{
    text-align:center;
    margin-bottom:12px;
    color:#555;
}

@media (max-width:768px){
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:25px;
    }
}

/* ================= FAQ PAGE ================= */

.faq-page{
    padding:100px 0;
    background:#f8f9fc;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:24px 30px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#0A3D91;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:28px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 30px 25px;
    color:#555;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }

}

body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::selection {
    background: #FF6B00;
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: #0A3D91;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B00;
}

html {
    scroll-behavior: smooth;
}

/* ================= BUSINESS HOURS ================= */

.business-hours{
    padding:100px 0;
    background:#f8fafc;
}

.hours-card{
    max-width:850px;
    margin:50px auto 0;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.hours-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.hours-icon{
    width:70px;
    height:70px;
    background:#0A3D91;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.hours-title h3{
    margin:0;
    color:#0A3D91;
    font-size:28px;
}

.status-badge{
    display:inline-block;
    margin-top:8px;
    padding:6px 14px;
    background:#22c55e;
    color:#fff;
    font-size:13px;
    font-weight:600;
    border-radius:20px;
}

.hours-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.hours-row:last-of-type{
    border-bottom:none;
}

.day{
    font-weight:600;
    color:#333;
    display:flex;
    align-items:center;
    gap:10px;
}

.day i{
    color:#FF6B00;
}

.time{
    color:#0A3D91;
    font-weight:700;
}

.hours-note{
    margin-top:30px;
    background:#eef5ff;
    border-left:5px solid #0A3D91;
    padding:18px 20px;
    border-radius:10px;
    color:#555;
    line-height:1.7;
}

.hours-note i{
    color:#FF6B00;
    margin-right:8px;
}

.hours-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 24px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s ease;
}

.btn-whatsapp:hover{
    background:#1daa57;
}

@media(max-width:768px){

    .hours-card{
        padding:25px;
    }

    .hours-header{
        flex-direction:column;
        text-align:center;
    }

    .hours-row{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .hours-actions{
        flex-direction:column;
    }

    .hours-actions a{
        width:100%;
        text-align:center;
    }
}