*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    background: #fff;
}

/* ── UTILITIES ── */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-md-4 {
    width: 33.333%;
}

.col-md-5 {
    width: 41.666%;
}

.col-md-6 {
    width: 50%;
}

.col-md-7 {
    width: 58.333%;
}

.col-sm-4 {
    width: 33.333%;
}

.col-sm-6 {
    width: 50%;
}

.col-sm-12 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.pull-right {
    float: right;
}

.list-inline {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.list-unstyled {
    list-style: none;
}

.hidden {
    display: none;
}

.section-padding {
    padding: 80px 0;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .3s;
}

.btn-primary {
    background: #1a73e8;
    color: #fff;
}

.btn-primary:hover {
    background: #1557b0;
}

.btn-primary.color-bg {
    background: #e87c1a;
}

.btn-primary.color-bg:hover {
    background: #c56814;
}

/* ── SECTION TITLE ── */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.section-title p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
}

.section-title .link {
    display: inline-block;
    margin-top: 14px;
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .5px;
}

.border-3 {
    width: 50px;
    height: 3px;
    background: #1a73e8;
    margin: 0 auto;
}

/* ══ HEADER ══ */
header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -1px;
}

.navbar-brand span {
    color: #1a73e8;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul a {
    text-decoration: none;
    color: #444;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: color .2s;
}

nav ul a:hover {
    color: #1a73e8;
}

.navbar-logo {
    transition: width 0.3s ease, height 0.3s ease;
    width: 100px;
    height: auto;
    display: block;
}

/* ══ SLIDER ══ */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .8s cubic-bezier(.77, 0, .175, 1);
}

.slide {
    min-width: 100%;
    height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 50, .55);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
}

.slide-content.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.slide-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.slide-headline span {
    display: block;
}

.slide-sub {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    line-height: 1.8;
    margin: 22px 0 30px;
    max-width: 520px;
    letter-spacing: .5px;
}

.slider-btn-left {
    margin-right: 10px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    border: none;
    transition: background .3s;
}

.slider-dot.active {
    background: #fff;
}

#slide-1 {
    background-image: url('images/slider_high_1.png');
}

#slide-2 {
    background-image: url('images/slider_high_2.png');
}

/* ══ RIGHT CHOICE ══ */
.right-choice-section {
    background: #f9fafb;
}

.section-wrapper {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    background: #fff;
    transition: transform .3s, box-shadow .3s;
}

.section-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .13);
}

.section-wrapper .caption {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.section-wrapper .caption img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hover-view {
    position: absolute;
    inset: 0;
    background: rgba(26, 115, 232, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0;
    transition: opacity .3s;
}

.caption:hover .hover-view {
    opacity: 1;
}

.section-wrapper .content {
    padding: 24px;
    text-align: center;
}

.section-wrapper .content h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-size: 16px;
    margin-top: 10px;
}

.section-wrapper .content p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* ══ COUNTING ══ */
.counting-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.counting-pusher {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.counting-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.count-description {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.counting-wrapper .content p {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.counter-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    color: #fff;
    font-size: 24px;
}

/* ══ FINANCE SERVICE ══ */
.finance-service-section {
    background: #fff;
}

.finance-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.finance-carousel::-webkit-scrollbar {
    display: none;
}

.finance-wrapper {
    min-width: 200px;
    flex: 1;
    padding: 36px 24px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow .3s, transform .3s;
    cursor: pointer;
    background: #fff;
}

.finance-wrapper:hover {
    box-shadow: 0 8px 30px rgba(26, 115, 232, .15);
    transform: translateY(-4px);
    border-color: #1a73e8;
}

.finance-wrapper h4 a {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #1a1a2e;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.finance-wrapper p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

/* ══ ICON HELPERS ══ */
.icon-placeholder {
    width: 52px;
    height: 52px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
}

.icon-placeholder i {
    color: #1a73e8;
    font-size: 22px;
}

.icon-sm {
    width: 36px;
    height: 36px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-sm i {
    color: #1a73e8;
    font-size: 16px;
}

/* ══ ABOUT COMPANY ══ */
.about-Company-Section {
    background: #f9fafb;
}

.content-wrapper h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.35;
}

.content-wrapper>p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-wrapper ul.content {
    list-style: none;
    margin: 20px 0;
}

.content-wrapper ul.content li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.single-content {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.quote-section {
    background: #1a73e8;
    border-radius: 8px;
    padding: 36px 32px;
}

.quote-section h3 {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-group>i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    z-index: 1;
}

.form-group.textarea-group>i {
    top: 14px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .7);
}

.form-control:focus {
    background: rgba(255, 255, 255, .25);
}

textarea.form-control {
    resize: vertical;
    display: block;
}

.quote-section .btn {
    width: 100%;
    background: #fff;
    color: #1a73e8;
    font-weight: 800;
    padding: 14px;
    display: block;
    text-align: center;
}

.quote-section .btn:hover {
    background: #f0f0f0;
}

/* ══ PROJECTS ══ */
.project-section {
    background: #fff;
}

.portfolio-sorting {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    padding: 0;
}

.filter-btn {
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #555;
    border: 2px solid #ddd;
    transition: all .3s;
    display: inline-block;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

.gallery-wrapper {
    width: 100%;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
}

.portfolio-items>li {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 33.333%;
}

.project-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.project-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-wrapper .hover-view {
    opacity: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: rgba(26, 115, 232, .88);
}

.project-wrapper:hover .hover-view {
    opacity: 1;
}

.project-wrapper .hover-view h4 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-top: auto;
}

.project-wrapper .hover-view p {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
}

.project-wrapper .hover-view a.pull-right {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

/* ══ TESTIMONIAL ══ */
.testimonial-section {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    padding: 80px 0;
}

.carousel-inner {
    overflow: hidden;
}

.item {
    display: none;
}

.item.active {
    display: block;
}

.carousel-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.carousel-wrapper>p {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.reviewer h5 {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.reviewer .position {
    color: #60a5fa;
    font-size: 13px;
    letter-spacing: .5px;
}

.carousel-controls {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-control {
    color: rgba(255, 255, 255, .6);
    font-size: 30px;
    text-decoration: none;
    transition: color .3s;
}

.carousel-control:hover {
    color: #fff;
}

/* ══ NEWS ══ */
.news-section {
    background: #f9fafb;
}

.news-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
    margin-bottom: 0;
}

.news-wrapper>img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 20px;
}

.news-content h4 a {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #1a1a2e;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.news-content h4 a:hover {
    color: #1a73e8;
}

.news-content p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin: 10px 0;
}

.news-content .date {
    font-size: 12px;
    color: #aaa;
}

.news-content .tag a {
    font-size: 12px;
    color: #1a73e8;
    text-decoration: none;
}

.middle-wrapper .news-content.size-changer {
    border-bottom: 1px solid #f0f0f0;
}

.video-content {
    position: relative;
}

.video-content>img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.video-content .link {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-content .link a {
    background: rgba(26, 115, 232, .9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.last-wrapper .news-content.size-changer {
    border-bottom: 1px solid #f0f0f0;
}

.last-wrapper .news-content.size-changer:last-child {
    border-bottom: none;
}

/* ══ SIGNUP ══ */
.signup-section {
    background: #1a73e8;
    padding: 60px 0;
}

.signup-section .row {
    align-items: center;
}

.contact-wrapper h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-wrapper h3 span {
    color: #ffd54f;
}

.form-wrapper {
    display: flex;
    max-width: 480px;
}

.searchBar {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.subscribeBtn {
    padding: 14px 26px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s;
}

.subscribeBtn:hover {
    background: #0d1117;
}

.signup-section .caption img {
    max-height: 220px;
    object-fit: contain;
    border-radius: 8px;
}

/* ══ MULTI (FAQ + CLIENTS) ══ */
.multi-section {
    background: #fff;
}

.faq-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.accordion-content h3 {
    padding: 16px 20px;
    background: #f5f7fa;
    border-left: 4px solid #1a73e8;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    margin-bottom: 2px;
    transition: background .2s;
}

.accordion-content h3:hover,
.accordion-content h3.open {
    background: #1a73e8;
    color: #fff;
}

.accordion-content>div {
    display: none;
    padding: 16px 20px;
    background: #fafafa;
    border-left: 4px solid #e0e0e0;
    margin-bottom: 6px;
}

.accordion-content>div p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.accordion-content>div.open {
    display: block;
}

.client-section h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 28px;
}

.logo {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.logo li {
    width: calc(25% - 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: box-shadow .3s;
}

.logo li:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.client-logo-placeholder {
    width: 80px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #999;
    font-size: 11px;
}

/* ══ FOOTER ══ */
footer {
    background: #0d1117;
    color: rgba(255, 255, 255, .7);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #1a73e8;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: #1a73e8;
    font-size: 14px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ══════════════════════════════════════
           HAMBURGER MENU
        ══════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
           LARGE TABLETS  ≤ 1024px
        ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .slide-headline {
        font-size: 42px;
    }

    .finance-wrapper {
        min-width: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ══════════════════════════════════════
           TABLETS  ≤ 768px
        ══════════════════════════════════════ */
@media (max-width: 768px) {

    /* NAV */
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    nav.open {
        max-height: 400px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    nav ul a {
        display: block;
        padding: 14px 24px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    header {
        position: sticky;
        top: 0;
    }

    .navbar {
        position: relative;
    }

    .navbar-logo {
        width: 70px;
    }

    /* GRID COLUMNS → FULL WIDTH */
    .col-sm-4,
    .col-sm-6,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7 {
        width: 100%;
    }

    /* SECTION PADDING */
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    /* SLIDER */
    .slide {
        height: 420px;
    }

    .slide-content {
        padding: 0 24px;
    }

    .slide-headline {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .slide-sub {
        font-size: 13px;
        margin: 14px 0 20px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* RIGHT CHOICE — stack cards vertically */
    .right-choice-section .row {
        flex-direction: column;
        gap: 24px;
    }

    .right-choice-section .col-sm-4 {
        width: 100%;
    }

    /* COUNTING */
    .counting-pusher {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .count-description {
        font-size: 36px;
    }

    /* SERVICES */
    .finance-carousel {
        flex-direction: column;
    }

    .finance-wrapper {
        min-width: unset;
    }

    /* ABOUT */
    .about-Company-Section .row {
        flex-direction: column;
        gap: 30px;
    }

    .col-md-7,
    .col-md-5 {
        width: 100%;
    }

    .quote-section {
        padding: 24px 20px;
    }

    /* PROJECTS */
    .portfolio-items>li {
        width: 50%;
    }

    .portfolio-sorting {
        gap: 6px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    /* NEWS */
    .news-section .row {
        flex-direction: column;
        gap: 24px;
    }

    .col-md-4 {
        width: 100%;
    }

    /* SIGNUP */
    .signup-section .row {
        flex-direction: column;
        gap: 24px;
    }

    .signup-section .caption {
        display: none;
    }

    .form-wrapper {
        max-width: 100%;
    }

    /* MULTI */
    .multi-section .row {
        flex-direction: column;
        gap: 36px;
    }

    .logo {
        gap: 12px;
    }

    .logo li {
        width: calc(33.333% - 9px);
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col {
        margin-bottom: 10px;
    }
}

/* ══════════════════════════════════════
           MOBILE  ≤ 480px
        ══════════════════════════════════════ */
@media (max-width: 480px) {

    /* SLIDER */
    .slide {
        height: 360px;
    }

    .slide-headline {
        font-size: 22px;
    }

    .slide-sub {
        display: none;
    }

    .slider-btn-left {
        margin-right: 6px;
    }

    /* SECTION TITLE */
    .section-title h2 {
        font-size: 22px;
    }

    .section-title p br {
        display: none;
    }

    /* RIGHT CHOICE */
    .section-wrapper .caption {
        height: 160px;
    }

    /* COUNTING */
    .counting-pusher {
        gap: 20px;
    }

    .count-description {
        font-size: 32px;
    }

    /* PROJECTS — single column */
    .portfolio-items>li {
        width: 100%;
    }

    /* NEWS */
    .news-wrapper>img {
        height: 150px;
    }

    /* SIGNUP */
    .contact-wrapper h3 {
        font-size: 20px;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .searchBar {
        border-radius: 4px 4px 0 0;
    }

    .subscribeBtn {
        border-radius: 0 0 4px 4px;
    }

    /* CLIENTS */
    .logo li {
        width: calc(50% - 8px);
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 14px;
    }
}


/* ══ INTRO SECTION ══ */
.intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item h4 {
    font-size: 24px;
    color: #1a73e8;
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    color: #888;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-stats {
        justify-content: space-around;
    }
}

/* ══ CONTACT PAGE ══ */
.contact-details {
    list-style: none;
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-details li .icon-placeholder {
    margin: 0;
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.detail-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-card {
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.social-links .icon-sm:hover {
    background: #1a73e8;
    color: #fff;
}

.social-links .icon-sm:hover i {
    color: #fff;
}

/* ══ ABOUT US VALUES GRID ══ */
.values-section {
    background: #f4fbff;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

.value-item {
    padding: 0 10px;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    min-height: 60px;
}

.value-icon {
    font-size: 36px;
    color: #1a1a2e;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.value-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.value-divider {
    width: 100%;
    height: 2px;
    background: #333;
    margin: 20px 0;
}

.value-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sebi-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ══ SEBI REGISTRATION TABLE ══ */
.sebi-section {
    background: #fdfdfe;
    padding: 90px 0;
}

.sebi-table-container {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    background: #fff;
    padding: 5px;
}

.sebi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    min-width: 750px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sebi-table th,
.sebi-table td {
    padding: 22px 28px;
    text-align: left;
    border-bottom: 1px solid #f2f5f9;
    font-size: 15px;
}

.sebi-table th {
    background: #f8fbff;
    color: #1a1a2e;
    font-weight: 700;
    width: 35%;
    border-right: 1px solid #f2f5f9;
}

.sebi-table td {
    color: #555;
    line-height: 1.7;
    vertical-align: top;
}

.sebi-table tr:last-child th,
.sebi-table tr:last-child td {
    border-bottom: none;
}

.sebi-table tr:hover td {
    background: #fafcff;
}

.sebi-table .highlight {
    color: #1a73e8;
    font-weight: 700;
    font-size: 16px;
}

.sebi-table strong {
    color: #1a1a2e;
}

.sebi-table a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.sebi-table a:hover {
    color: #1557b0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sebi-table th {
        width: 40%;
        padding: 18px 20px;
    }

    .sebi-table td {
        padding: 18px 20px;
    }

    .sebi-table {
        min-width: 600px;
    }
}

@media (max-width: 576px) {
    .sebi-table-container {
        border-radius: 8px;
    }

    .sebi-table {
        min-width: 100% !important;
        border: none;
    }

    .sebi-table tr {
        display: flex;
        width: 100%;
        border-bottom: 2px solid #f8fbff;
        align-items: stretch;
    }

    .sebi-table th {
        background: #f0f7ff;
        padding: 15px 20px;
        color: #1a73e8;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 150px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .sebi-table td {
        padding: 15px 20px;
        font-weight: 600;
        color: #222;
        font-size: 14px;
        flex-grow: 1;
        display: flex;
        align-items: center;
        word-break: break-word;
    }
}

/* ══ EXACT WHY US DESIGN (MATCH IMAGE) ══ */
.why-us-section {
    background-color: #f1f5f8;
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.why-us-item {
    display: flex;
    flex-direction: column;
}

.why-us-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.why-us-icon {
    font-size: 42px;
    color: #1a1a2e;
    width: 50px;
    text-align: center;
}

.why-us-header h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.why-us-divider {
    width: 100px;
    height: 4px;
    background: #1a1a2e;
    margin-bottom: 25px;
}

.why-us-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.why-us-text strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

@media (max-width: 1100px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}