html{
    scroll-behavior:smooth;
}

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

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

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#111827;
    background:#ffffff;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}


/* ==========================
   HEADER
========================== */

.header{
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;
}

.header.scrolled{
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}


.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}


/* ==========================
   LOGO
========================== */

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;

    gap:12px;

}

.logo img{

    width:46px;

}

.logo span{

    font-size:30px;

    font-weight:700;

    color:#111827;

}


/* ==========================
   NAVIGATION
========================== */

.nav-links{

    display:flex;
    align-items:center;
    list-style:none;
    gap:40px;

}

.nav-links a{
    position:relative;
    color:#1e293b;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#2563eb;
    transition:.3s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#2563eb;
}


/* ==========================
   CTA BUTTON
========================== */

.cta-button{

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:15px 28px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.cta-button:hover{

    background:#1d4ed8;

}

/* ==========================
   HERO SECTION
========================== */

.hero {
    padding: 90px 0;
    background: #f8fbff;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    background: #eaf2ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #111827;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.primary-btn img {
    width: 20px;
    height: 20px;
    color: #ffffff;
    filter: brightness(0) invert(1);
}

.primary-btn {
    background: #2563eb;
    color: white;
}

.primary-btn:hover {
    background: #1d4ed8;
}

.secondary-btn {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.secondary-btn:hover {
    background: #2563eb;
    color: white;
}

.hero-rating {
    font-size: 18px;
}

.hero-rating span {
    margin-left: 10px;
    color: #6b7280;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================
   STICKY NAVBAR SHADOW
============================ */

.header.scrolled{
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: box-shadow .3s ease;
}

/* ====================================
   WHY CHOOSE US
==================================== */

.why-us{
    padding:100px 0 120px;
    position:relative;
    overflow:hidden;
}

.why-us::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(37,99,235,.05);

    top:-250px;
    right:-250px;

    filter:blur(80px);

    pointer-events:none;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:8px 16px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    margin:20px 0;
    font-size:48px;
    line-height:1.2;
}

.section-title p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
    height:100%;
}

.why-card:hover{
    transform:translateY(-12px);
    border-color:#2563eb;
    box-shadow:
        0 25px 60px rgba(37,99,235,.12),
        0 10px 25px rgba(0,0,0,.05);
}

.why-icon{
    width:68px;
    height:68px;
    margin:0 auto 22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .35s ease;
}

.why-icon img{
    width:30px;
    height:30px;
    filter: brightness(0) invert(1);
    transition:transform .35s ease;
}

.why-card h3{
    margin-bottom:12px;
    font-size:22px;
    line-height:1.3;
}

.why-card p{
    color:#6b7280;
    line-height:1.7;
    font-size:15px;
}

.menu-toggle{

    display:none;
    background:none;
    border:none;
    font-size:34px;
    cursor:pointer;
    color:#0f172a;

}

@media (max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

.green{
    background:#16A34A;
}

.blue{
    background:#2563EB;
}

.purple{
    background:#7C3AED;
}

.orange{
    background:#EA580C;
}

.why-icon{
    transition: all .3s ease;
}

.why-card:hover .why-icon{
    transform:translateY(-4px) scale(1.08);
}

.why-card:hover .why-icon img{
    transform:rotate(-10deg);
}

.process{
    padding:120px 0;
    background:#ffffff;
}

.process{
    padding:140px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
    align-items:start;
    margin-top:60px;
}

.process-grid::before{
    content:"";
    position:absolute;
    top:46px;
    left:10%;
    width:80%;
    border-top:2px dashed #E9EEF7;
}

.process-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:40px 24px;
    text-align:center;
    position:relative;
    transition:all .35s ease;
}

.process-card:hover .process-icon{

    transform:translateY(-8px);

    box-shadow:
        0 18px 40px rgba(37,99,235,.18);

    background:#2563eb;

    border-color:#2563eb;
}

.process-icon{
    width:76px;
    height:76px;
    margin:0 auto 28px;
    border-radius:50%;

    background:#ffffff;

    border:2px solid #dbeafe;

    display:flex;
    align-items:center;
    justify-content:center;

    transition: all .35s ease;

    box-shadow: 0 10px 24px rgba(37,99,235,.18);
}

.process-card:hover .process-icon{
    transform: rotate(-8deg) scale(1.08);
}

.process-card:hover .process-icon img{

    filter:brightness(0) invert(1);

    transform:scale(1.08);
}

.process-icon img{
    transition:.35s;
}

.process-icon img{
    width:42px;
    height:42px;
}

.process-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:14px;
    color:#0f172a;
}

.process-card p{
    font-size:17px;
    line-height:1.7;
    color:#64748b;
    max-width:230px;
    margin:0 auto;
}

.process-icon-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    margin-bottom:42px;
}

.process-icon-wrapper{
    position:relative;
    z-index:2;
}

.process-step{

    position:absolute;

    top:-10px;
    right:30%;

    width:28px;
    height:28px;

    border-radius:50%;

    background:#0f172a;

    color:#fff;

    font-size:14px;

    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    border:3px solid white;

    z-index:5;

    transition: all .35s ease;
}

.process-card:hover .process-step{
    transform: scale(1.15);
}

.process-card{
    position:relative;
    transition: all .35s ease;
    overflow:hidden;
}

.process-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37,99,235,.12);
    border-color:#2563eb;
}

.process-card:not(:last-child)::after{

    content:"";

    position:absolute;

    top:38px;

    left:58%;

    width:85%;

    border-top:none;

    z-index:0;
}

.industries{
    padding:140px 0;
    background:#fff;
    text-align:center;
}

.section-subtitle{
    max-width:760px;
    margin:24px auto 0;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.industry-card{
    position:relative;
    height:320px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:.35s ease;

    border:2px solid transparent;
}

.industry-card img{
    transition:transform .45s ease;
}

.industry-card:hover > img{
    transform:scale(1.05);
}

.industry-card > img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#fff;
    display:block;
}

.industry-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;

    display:flex;
    align-items:center;
    gap:16px;

    padding:12px 20px;

    background:rgba(8,24,52,.85);
    backdrop-filter:blur(10px);
}

.industry-overlay h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

.industry-overlay img{
    width:28px;
    height:28px;
    filter:brightness(0) invert(1);
}

.industry-card{
    transition:.35s ease;
}

.industry-card:hover{
    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

    border-color:#2563eb;
}

.industry-card:hover > img{
    transform:scale(1.06);
}

.footer{
    text-align:center;
}

.footer-brand{
    margin-bottom:30px;
    width:100%;
}

.footer-brand p{
    margin-left:auto;
    margin-right:auto;
}

.footer-btn{
    display:inline-block;
}

.footer-bottom{
    width:100%;
    margin-left:auto;
    margin-right:auto;
}

/* ===========================
   SERVICES
=========================== */

.services{
    padding:120px 0 70px;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-title h2{
    font-size:56px;
    line-height:1.15;
    margin:18px 0 24px;
    color:#101828;
}

.section-title p{
    font-size:22px;
    line-height:1.8;
    color:#667085;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px;
    max-width:1100px;
    margin:0 auto;
}

.service-card{
    background:#ffffff;
    border:1px solid #E4E7EC;
    border-radius:20px;
    padding:40px;
    transition:.35s ease;
}

.service-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:18px;

    min-height:280px;
    justify-content:center;
}

.service-icon{
    width:72px;
    height:72px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;
}

.service-card h3{
    font-size:30px;
    margin:0;
    color:#101828;
}

.service-card p{
    font-size:18px;
    line-height:1.7;
    color:#667085;
    margin:0;
}

.service-card:hover{
    transform:translateY(-10px);

    box-shadow:0 22px 60px rgba(15,23,42,.12);

    border-color:#2563eb;
}

.service-icon img{
    filter:
        invert(33%)
        sepia(96%)
        saturate(2900%)
        hue-rotate(220deg)
        brightness(95%);
}

.service-icon{
    transition:.35s ease;
}

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

/* Website Design */

.design:hover{
    border-color:#2563EB;
}

.design:hover .service-icon{
    background:#2563EB;
}


/* Website Redesign */

.redesign:hover{
    border-color:#7C3AED;
}

.redesign:hover .service-icon{
    background:#7C3AED;
}


/* Website Care */

.hosting:hover{
    border-color:#16A34A;
}

.hosting:hover .service-icon{
    background:#16A34A;
}


/* Local SEO */

.seo:hover{
    border-color:#F97316;
}

.seo:hover .service-icon{
    background:#F97316;
}

.service-card:hover .service-icon img{
    filter:brightness(0) invert(1);
}

.design .service-icon{
    background:#EEF4FF;
}

.redesign .service-icon{
    background:#F5F0FF;
}

.hosting .service-icon{
    background:#F0FDF4;
}

.seo .service-icon{
    background:#FFF7ED;
}

..design .service-icon img{
    /* Use the default icon filter; no custom blue filter needed here. */
}

/* ===========================
   PORTFOLIO
=========================== */

.portfolio{
    padding:25px 0 90px;
    background:#f7faff;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    margin-top:40px;
}

.portfolio-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #e7edf7;
    transition:.35s ease;
    box-shadow:0 10px 35px rgba(15,23,42,.05);
    width:100%;
}

.portfolio-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(15,23,42,.12);
}

.portfolio-image{
    height:300px;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.portfolio-card:hover .portfolio-image img{
    transform:scale(1.04);
}

.portfolio-card:hover img{
    transform:scale(1.03);
}

.portfolio-content{
    padding:34px;
}

.industry-tag{
    display:inline-block;
    padding:8px 16px;
    background:#e8f0ff;
    color:#2563eb;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.portfolio-content h3{

    font-size:30px;

    margin-top:22px;

    margin-bottom:14px;

    font-weight:700;

}

.portfolio-content p{

    font-size:18px;

    color:#667085;

    line-height:1.8;

    margin:25px 0;

}

.portfolio-features{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:30px 0;
    padding:0;
}

.portfolio-features li{
    background:#f8fbff;
    border:1px solid #e7edf8;
    border-radius:12px;
    padding:12px 16px;
    font-weight:600;
    transition:.3s ease;
}

.portfolio-features li:hover{
    border-color:#2563eb;
    background:#eef5ff;
    transform:translateY(-3px);
}

.portfolio-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 28px;

    background:#2563eb;

    color:#fff;

    border-radius:14px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.portfolio-btn:hover{

    transform:translateY(-3px) scale(1.02);

    background:#1d4ed8;

}

/* Portfolio Improvements */

.demo-badge{

    display:inline-block;

    margin-left:12px;

    padding:8px 14px;

    background:#ecfdf3;

    color:#027a48;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

}

.portfolio-hook{

    font-size:24px;

    line-height:1.3;

    margin:18px 0;

    color:#101828;

}

.portfolio-buttons{

    margin-top:30px;

}

/* ===========================
   Portfolio Small Cards
=========================== */

.portfolio-small-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.portfolio-small-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e8edf7;
    transition:.35s ease;
    cursor:pointer;
    position:relative;
    height:100%;
}

.portfolio-small-card:hover{
    transform:translateY(-10px);
    border-color:#2563eb;
    box-shadow:0 20px 50px rgba(37,99,235,.18);
}

.portfolio-small-card img{
    width:100%;
    height:170px;
    object-fit:cover;
    transition:.45s ease;
}

.portfolio-small-card:hover img{
    transform:scale(1.05);
}

.portfolio-small-content{
    padding:28px;
}

.portfolio-small-content h3{
    margin:16px 0 10px;
    font-size:26px;
    line-height:1.25;
}

.portfolio-small-content p{
    margin-bottom:18px;
    color:#667085;
    line-height:1.7;
    font-size:17px;
}

.portfolio-small-content a{
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:.3s ease;
    margin-top:auto;
}

.portfolio-small-content a:hover{
    gap:10px;
}

.portfolio-small-card:hover .portfolio-small-content a{
    gap:12px;
}

.portfolio-small-link{
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:.3s ease;
    margin-top:18px;
}

.portfolio-small-link:hover{
    gap:10px;
}

.portfolio-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.hvac{
    background:#fff7ed;
    color:#ea580c;
}

.roofing{
    background:#fef2f2;
    color:#dc2626;
}

.electrical{
    background:#fefce8;
    color:#ca8a04;
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #e7edf7;
    border-radius:22px;
    padding:35px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.testimonial-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.testimonial-card p{
    line-height: 1.8;
}

.testimonial-author h4{
    font-weight:700;
}

.testimonial-card:hover{
    transform:translateY(-12px) scale(1.02);
    border-color:#2563eb;
    box-shadow:0 25px 60px rgba(37,99,235,.12);
}

.stars{
    color:#f59e0b;
    font-size:22px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.testimonial-text{
    color:#475467;
    line-height:1.8;
    margin-bottom:30px;
    font-size:16px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:16px;
}

.author-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.testimonial-author h4{
    margin:0;
    font-size:18px;
    color:#101828;
}

.testimonial-author span{
    color:#667085;
    font-size:14px;
}

/* ===========================
   CTA SECTION
=========================== */

.cta{
    padding:120px 0;
}

.cta-box{

    max-width:1150px;
    margin:auto;
    padding:80px 70px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:30px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.cta-box::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-220px;
    right:-180px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-170px;
    left:-130px;

}

.cta .section-badge{

    background:rgba(255,255,255,.15);

    color:#fff;

    border:1px solid rgba(255,255,255,.25);
}

.cta h2{

    color:#fff;

    font-size:52px;

    line-height:1.15;

    margin:28px 0;

    margin-bottom:28px;
}

.cta p{

    color:rgba(255,255,255,.88);

    font-size:20px;

    max-width:720px;

    margin:0 auto 42px;

    line-height:1.8;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;
}

.btn{

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;
}

.btn-primary{

    background:#2563eb;
    color:#fff;
    border:none;
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(0,0,0,.18);
}

.btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;
}

.btn-secondary:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-4px);
}

/* ===========================
   FOOTER
=========================== */

.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:70px;
    align-items:start;
}

.footer-brand img{
    width:180px;
    height:auto;
    display:block;
    margin:0 auto 24px;
    object-fit:contain;
}

.footer-brand p{
    font-size:17px;
    line-height:1.8;
    color:#94a3b8;
    margin-bottom:30px;
    max-width:470px;
}

.footer-btn{
    display:inline-block;
    padding:16px 28px;
    background:#2563eb;
    color:#fff;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.footer-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(37,99,235,.18);
}

.footer-links h4{
    color:#fff;
    margin-bottom:24px;
    font-size:20px;
}

.footer-links a,
.footer-links p{
    display:block;
    color:#94a3b8;
    text-decoration:none;
    margin-bottom:16px;
    transition:.3s ease;
}

.footer-links a:hover{
    color:#fff;
    padding-left:6px;
}

.footer a{
    transition:.3s;
}

.footer a:hover{
    color:#2563eb;
}

.footer-bottom{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#64748b;
    font-size:15px;
}

/* ==========================
   CONTACT
========================== */

.contact{
    padding:100px 0;
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:50px;
    margin-top:60px;
}

.contact-form{
    background:#fff;
    border:1px solid #e8eef8;
    border-radius:20px;
    padding:40px;
    box-shadow:0 12px 40px rgba(0,0,0,.05);
}

.contact-form form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.full-width{
    grid-column:1/-1;
}

.form-group label{
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

.form-group input,
.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #d8e2f0;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

    outline:none;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.contact-form .btn{
    margin-top:12px;
    width:100%;
}

.contact-info{
    display:flex;
    align-items:center;
}

.info-card{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(37,99,235,.25);

}

.info-card h3{

    margin-bottom:25px;

    font-size:28px;

}

.info-card ul{

    list-style:none;

    margin:0 0 35px;

    padding:0;

}

.info-card li{

    margin-bottom:18px;

    font-size:17px;

}

.contact-details p{

    margin-bottom:10px;

}

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-form form{

grid-template-columns:1fr;

}

}

/* =====================================================
   KUANDOWEB RESPONSIVE SYSTEM
   Clean tablet + mobile layout
===================================================== */


/* =====================================================
   TABLET — 1024px AND BELOW
===================================================== */

@media (max-width: 1024px) {

    /* ---------- Global ---------- */

    .container {
        width: 92%;
        max-width: 1200px;
    }


    /* ---------- Header ---------- */

    .navbar {
        height: 75px;
    }

    .nav-links,
    .nav-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;

        width: 44px;
        height: 44px;

        padding: 0;
        margin: 0;

        align-items: center;
        justify-content: center;

        flex-direction: column;
        gap: 6px;

        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;

        cursor: pointer;

        position: relative;
        z-index: 10001;
    }

    .menu-toggle span {
        display: block;

        width: 26px;
        height: 2px;

        background: #111827;

        border-radius: 10px;

        transition: all 0.3s ease;
    }

    .menu-toggle span:nth-child(2) {
        width: 18px;
    }

    /* Hamburger → X */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* ---------- Mobile / Tablet Menu ---------- */

    .mobile-menu {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #ffffff;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 18px;

        padding: 26px 20px 30px;

        border-top: 1px solid #e5e7eb;

        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.10);

        transform: translateY(-20px);

        opacity: 0;
        visibility: hidden;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;

        z-index: 10000;
    }

    .mobile-menu.active {
        transform: translateY(0);

        opacity: 1;
        visibility: visible;
    }

    .mobile-menu a {
        color: #111827;

        text-decoration: none;

        font-size: 17px;
        font-weight: 600;

        padding: 6px 0;
    }

    .mobile-menu .cta-button {
        display: inline-block !important;

        margin-top: 8px;

        background: #2563eb;
        color: #ffffff;

        padding: 13px 26px;

        border-radius: 10px;

        min-width: 220px;

        text-align: center;
    }


    /* ---------- HERO ---------- */

    .hero {
        padding: 75px 0 85px;
    }

    .hero-content {
        flex-direction: column;

        text-align: center;

        gap: 34px;
    }

    .hero-text {
        order: 1;

        width: 100%;
        max-width: 850px;

        margin: 0 auto;
    }

    .hero-tag {
        margin-bottom: 22px;
    }

    .hero h1,
    .hero-title {
        font-size: 48px;

        line-height: 1.15;

        margin-bottom: 24px;
    }

    .hero p,
    .hero-description {
        font-size: 18px;

        line-height: 1.7;

        max-width: 760px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;

        flex-direction: row;

        flex-wrap: wrap;

        gap: 16px;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-image {
        order: 2;

        width: 100%;

        max-width: 560px;

        margin: 0 auto;

        text-align: center;
    }

    .hero-image img {
        width: 100%;

        max-width: 560px;

        height: auto;

        display: block;

        margin: 0 auto;
    }


    /* ---------- Why Us ---------- */

    .why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }


    /* ---------- Process ---------- */

    .process-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }


    /* ---------- Industries ---------- */

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }


    /* ---------- Services ---------- */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }


    /* ---------- Portfolio ---------- */

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .portfolio-grid .portfolio-card:first-child {
        grid-column: 1 / -1;
    }

    .portfolio-small-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }


    /* ---------- Testimonials ---------- */

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }


    /* ---------- Footer ---------- */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }


    /* ---------- Contact ---------- */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

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

}

.mobile-menu {
    display: none;
}


/* =====================================================
   TABLET — 768px AND BELOW
===================================================== */

@media (max-width: 768px) {

    section {
        padding: 80px 0;
    }

    .container {
        width: 92%;
    }


    /* ---------- Hero ---------- */

    .hero {
        padding: 65px 0 75px;
    }

    .hero h1,
    .hero-title {
        font-size: 42px;
    }

    .hero p,
    .hero-description {
        font-size: 17px;
    }

    .hero-image {
        max-width: 520px;
    }

    .hero-image img {
        max-width: 520px;
    }


    /* ---------- Section Titles ---------- */

    .section-title h2 {
        font-size: 40px;
    }

    .section-title p {
        font-size: 18px;
    }


    /* ---------- Why Us ---------- */

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


    /* ---------- Services ---------- */

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


    /* ---------- Portfolio ---------- */

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

    .portfolio-small-grid {
        grid-template-columns: 1fr;
    }


    /* ---------- Testimonials ---------- */

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


    /* ---------- Footer ---------- */

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

        text-align: center;
    }


    /* ---------- CTA ---------- */

    .cta-box {
        padding: 60px 40px;
    }

    .cta h2 {
        font-size: 42px;
    }

}


/* =====================================================
   MOBILE — 600px AND BELOW
===================================================== */

@media (max-width: 600px) {

    section {
        padding: 70px 0;
    }

    .container {
        width: 92%;
    }


    /* ---------- Header ---------- */

    .navbar {
        height: 70px;
    }

    .mobile-menu {
        top: 70px;
    }


    /* ---------- Hero ---------- */

    .hero {
        padding: 55px 0 65px;
    }

    .hero h1,
    .hero-title {
        font-size: 36px;

        line-height: 1.2;
    }

    .hero p,
    .hero-description {
        font-size: 16px;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;

        width: 100%;
    }

    .hero-buttons a {
        width: 100%;

        max-width: 300px;

        text-align: center;
    }

    .hero-rating {
        flex-direction: column;

        gap: 10px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 100%;
    }


    /* ---------- Section Titles ---------- */

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 17px;
    }


    /* ---------- Process ---------- */

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


    /* ---------- Industries ---------- */

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


    /* ---------- Services ---------- */

    .service-card {
        padding: 30px 22px;

        min-height: 230px;
    }


    /* ---------- Contact ---------- */

    .contact {
        padding: 70px 0;
    }

    .contact-form {
        padding: 26px 20px;
    }


    /* ---------- CTA ---------- */

    .cta-box {
        padding: 50px 24px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: center;
    }

    .btn {
        width: 100%;

        max-width: 300px;
    }


    /* ---------- Footer ---------- */

    .footer {
        padding: 70px 0 30px;
    }

}


/* =====================================================
   SMALL PHONES — 420px AND BELOW
===================================================== */

@media (max-width: 420px) {

    .container {
        width: 94%;
    }


    /* ---------- Hero ---------- */

    .hero {
        padding: 45px 0 55px;
    }

    .hero h1,
    .hero-title {
        font-size: 31px;
    }


    /* ---------- Mobile Menu ---------- */

    .menu-toggle {
        width: 42px;
        height: 42px;

        border: 1px solid #e5e7eb;
    }

    .mobile-menu {
        padding: 24px 20px 28px;
    }


    /* ---------- Industries ---------- */

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;
    }

    .industry-card {
        height: 160px;

        min-height: 160px;
    }

    .industry-card > img {
        object-fit: cover;
    }

    .industry-overlay {
        padding: 10px 12px;

        gap: 8px;
    }

    .industry-overlay img {
        width: 24px;
        height: 24px;
    }

    .industry-overlay h3 {
        font-size: 15px;
    }


    /* ---------- Section Titles ---------- */

    .section-title h2 {
        font-size: 30px;
    }

}

/* ===== Calendar CTA Icon Fix ===== */

.navbar .nav-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
}

.navbar .nav-btn img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    display: block !important;
    object-fit: contain !important;
    flex: 0 0 18px !important;
    filter: brightness(0) invert(1) !important;
}

