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

body{
    font-family:'Inter',sans-serif;
    background:#f5f7fa;
    color:#1b1f27;
    line-height:1.6;
}

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

.site-header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
}

.logo img{
    height:70px;
    width:auto;
}

.main-nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.main-nav a{
    text-decoration:none;
    color:#1b1f27;
    font-weight:600;
    transition:.3s;
}

.main-nav a:hover{
    color:#1f66b3;
}

.portal-btn{
    background:#1f66b3;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
}

.portal-btn:hover{
    background:#2e84e6;
}

.site-footer{
    background:linear-gradient(135deg,#0f172a,#1e3a5f);
    color:#fff;
    padding:60px 0 20px;
    margin-top:00px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.footer-logo img{
    background:#fff;
    max-width:320px;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-links a:hover{
    color:#2e84e6;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

@media(max-width:768px){

    .logo img{
        height:60px;
    }

    .header-inner{
        flex-direction:column;
        gap:10px;
    }

    .main-nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .portal-btn{
        display:none;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        align-items:center;
    }

}

.hero{
    background:linear-gradient(135deg,#1b1f27,#1f66b3);
    color:#fff;
    padding:100px 0;
    text-align:center;
}

.hero h1{
    font-size:56px;
    margin-bottom:25px;
    line-height:1.1;
}

.hero p{
    max-width:800px;
    margin:0 auto 40px;
    font-size:20px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#ffffff;
    color:#1f66b3;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    background:transparent;
    border:2px solid #ffffff;
    color:#ffffff;
}

.services-preview{
    padding:80px 0;
    color:#3F4040;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.portfolio-section-heading{
    text-align:center;
    margin-bottom:10px;
}

.branding-section-heading{
    text-align:center;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:42px;
    margin-bottom:15px;
}

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

.service-card{
    background:#fff;
    color:#3F4040;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.service-card h3{
    margin-bottom:15px;
    color:#1f66b3;
}

.why-us{
    background:#ffffff;
    padding:80px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:900px;
    margin:auto;
}

.feature-item{
    background:#f5f7fa;
    padding:20px;
    border-radius:10px;
    font-weight:600;
}

.cta-section{
    background:#1f66b3;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 30px;
}

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

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

}

.wizard-section{
    padding:80px 0;
}

.wizard-header{
    text-align:center;
    margin-bottom:40px;
}

.wizard-header h1{
    font-size:48px;
    margin-bottom:15px;
}

.progress-wrapper{
    max-width:900px;
    margin:0 auto 40px;
}

.progress-bar{
    height:12px;
    background:#e5e7eb;
    border-radius:50px;
    overflow:hidden;
}

.progress-fill{
    width:16.66%;
    height:100%;
    background:#1f66b3;
    transition:.3s;
}

.progress-text{
    margin-top:10px;
    font-weight:600;
    text-align:center;
}

.wizard-step{
    display:none;
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.wizard-step.active{
    display:block;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:15px;
    border:1px solid #d1d5db;
    border-radius:8px;
    font-size:16px;
}

.checkbox-group{
    display:grid;
    gap:15px;
    margin-bottom:25px;
}

.wizard-buttons{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-top:30px;
}

@media(max-width:768px){

    .wizard-step{
        padding:25px;
    }

    .wizard-buttons{
        flex-direction:column;
    }

}

.hero-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

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

@media(max-width:768px){

    .hero-layout{
        grid-template-columns:1fr;
    }

    .hero-image{
        order:-1;
    }

}

.portfolio-image{
    width:100%;
    height:120px;
    object-fit:cover;
    object-position:top;
    border-radius:8px;
    margin-bottom:10px;
    border:1px solid #e5e7eb;
}

.portfolio-page-image{
    width:100%;
    height:180px;
    object-fit:cover;
    object-position:top;
    border-radius:8px;
    margin-bottom:10px;
    border:1px solid #e5e7eb;
}

.portfolio-link{
    display:inline-block;
    margin-top:10px;
    color:#1f66b3;
    font-weight:600;
    text-decoration:none;
}

.portfolio-link:hover{
    text-decoration:underline;
}










.branding-image{
    width:100%;
    height:100px;
    object-fit:cover;
    object-position:top;
    border-radius:8px;
    margin-bottom:10px;
    border:1px solid #e5e7eb;
}

.branding-page-image{
    width:100%;
    height:180px;
    object-fit:contain;
    object-position:center;
    background:#ffffff;
    padding:20px;
    border-radius:8px;
    margin-bottom:10px;
    border:1px solid #e5e7eb;
}

.branding-link{
    display:inline-block;
    margin-top:10px;
    color:#1f66b3;
    font-weight:600;
    text-decoration:none;
}

.branding-link:hover{
    text-decoration:underline;
}

.branding-card{
    display:flex;
    flex-direction:column;
    height:100%;
}





.network-banner{
    background:linear-gradient(135deg,#0f172a,#1e3a5f);
    color:#fff;
    padding:80px 0;
}

.network-banner .section-heading h2{
    color:#fff;
}

.network-banner .section-heading p{
    color:#cbd5e1;
    max-width:900px;
    margin:auto;
}

.network-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:20px;
    margin-top:50px;
}

.network-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
}

.network-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.12);
}

.network-icon{
    font-size:42px;
    margin-bottom:15px;
}

.network-card h3{
    color:#fff;
    margin:0;
    font-size:1.1rem;
}

.network-results{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:50px;
    flex-wrap:wrap;
}

.result-item{
    background:#1f66b3;
    padding:15px 25px;
    border-radius:50px;
    font-size:1rem;
}

.why-us-dark{
    background:linear-gradient(135deg,#0f172a,#1e3a5f);
    color:#fff;
}

.why-us-dark .section-heading h2{
    color:#fff;
}

.why-us-dark .section-heading p{
    color:#cbd5e1;
}

.why-us-dark .feature-item{
    background:#f1f5f9;
    color:#111827;
    border:1px solid #dbeafe;
    font-weight:600;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.branding-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

@media(max-width:900px){
    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .portfolio-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:900px){
    .branding-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .branding-grid{
        grid-template-columns:1fr;
    }
}

.portfolio-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.portfolio-card-content{
    padding:20px;
}

.portfolio-category{
    padding:50px 0;
}

.portfolio-category:nth-child(even){
    margin-bottom:10px;
    background:#ffffff;
}




.branding-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.branding-card-content{
    padding:20px;
}

.branding-category{
    padding:50px 0;
}

.branding-category:nth-child(even){
    margin-bottom:10px;
    background:#ffffff;
}


/* Dropdown Menu */

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    text-decoration: none;
}

/* Hidden by default */

.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 999;
}

/* Show on hover */

.main-nav .has-dropdown:hover .dropdown {
    display: block;
}

/* Dropdown items */

.main-nav .dropdown li {
    display: block;
}

.main-nav .dropdown a {
    display: block;
    padding: 12px 18px;
    white-space: nowrap;
}

.main-nav .dropdown a:hover {
    background: #f1f5f9;
}