:root {
    --primary: #6C63FF;
    --primary-dark: #4D44DB;
    --primary-light: #A5A1FF;
    --secondary: #FF6584;
    --dark: #1A1A2E;
    --darker: #0F0F1B;
    --light: #F8F9FA;
    --lighter: #FFFFFF;
    --gray: #ADB5BD;
    --dark-gray: #495057;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
    padding: 0;
}

.portfolio-card>.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .portfolio-card {
        width: calc(33.333% - 21.333px);
        max-width: 420px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-cards {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
    }

    .portfolio-card {
        width: 100%;
        max-width: 100%;
    }
}

.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-image: linear-gradient(135deg, #1A237E 0%, #009688 100%), url('images/banner-background.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.55) 0%, rgba(0, 150, 136, 0.45) 100%);
    pointer-events: none;
}

.hero h1 {
    letter-spacing: 2px;
    font-size: 3rem;
}

.hero .lead {
    font-size: 1.1rem;
    opacity: 0.95
}

.btn-explore {
    background: rgba(0, 150, 136, 0.95);
    border: none;
    color: white;
}

.btn-explore:hover {
    background: rgba(0, 150, 136, 1)
}

.btn-learn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.06)
}

.down-arrow {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    opacity: 0.9;
    z-index: 2;
}

.navbar {
    box-shadow: none !important
}

.navbar-brand {
    font-size: 1.25rem
}

.navbar .nav-link {
    color: #243047;
    padding: .5rem 0.9rem
}

.navbar-nav {
    gap: 30px;
}

.brand-blue {
    color: #0d47a1;
    letter-spacing: 1px
}

.brand-teal {
    color: #009688
}

.header-gradient-bar {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #1A237E 0%, #009688 100%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) inset;
}

.navbar-toggler {
    border: none
}

.navbar-toggler-icon:empty::before {
    content: '\2630';
    display: none;
    font-size: 22px;
    color: #243047;
}

.nav-link:focus,
.btn:focus {
    outline: 3px solid rgba(0, 150, 136, 0.18);
    outline-offset: 2px
}

.hero h1,
.hero .lead,
.hero>.container p.mb-4,
.buttons,
.down-arrow,
.header-gradient-bar,
.navbar-nav .nav-item {
    opacity: 0;
    transform: translateY(12px);
}

.hero h1.animate,
.hero .lead.animate,
.hero>.container p.mb-4.animate,
.buttons.animate,
.navbar-nav .nav-item.animate {
    animation: fadeUp 560ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.buttons.animate .btn {
    opacity: 0;
    transform: scale(.98) translateY(6px);
    animation: popIn 420ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.buttons.animate .btn:nth-child(1) {
    animation-delay: 0.02s
}

.buttons.animate .btn:nth-child(2) {
    animation-delay: 0.12s
}

.down-arrow.animate {
    animation: bounce 1400ms ease-in-out infinite
}

.header-gradient-bar.animate {
    animation: slideGradient 6s linear infinite;
    background-size: 200% 100%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.96) translateY(6px)
    }

    60% {
        transform: scale(1.02) translateY(0)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@keyframes slideGradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.navbar .nav-link {
    position: relative
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #009688;
    transition: transform .22s cubic-bezier(.2, .9, .2, 1)
}

.navbar .nav-link:hover::after,
.navbar .nav-item.animate .nav-link {
    transform-origin: center;
    transform: translateX(-50%) scaleX(1);
}

.about-content h2 {
    font-size: 48px;
    font-weight: 600;
    font-family: poppins, sans-serif;
    color: #1A237E;
}

.about-content p {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    font-family: poppins, sans-serif;
}

/* Tabs styling for Our Mission/Vision */
.our-mission .nav-tabs .nav-link {
    color: #243047;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.our-mission .nav-tabs .nav-link.active {
    background: linear-gradient(90deg, #1A237E 0%, #009688 100%);
    color: #fff;
    border-color: transparent;
}

.our-mission .tab-content {
    margin-top: 0.5rem;
}

.our-panel-wrap {
    margin-top: 0.5rem;
}

.our-panel {
    display: none;
}

.our-panel.show.active {
    display: block;
}

.our-panel .panel-inner {
    background: #f5f7fa;
    padding: 18px;
    border-radius: 12px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 0 rgba(12, 20, 40, 0.04) inset;
    color: #1A237E;
    font-size: 18px;
}

.our-panel h4 {
    color: #1A237E;
    font-weight: 600;
}

.about-image {
    width: 100%;
    height: auto;
}

.about-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-icon {
    position: absolute;
    width: 209px;
    height: 67px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(12, 20, 40, 0.12);
}

.about-icon-1 {
    left: -45px;
    top: -20px;
    background: #009688;
    color: #fff;
    transform: translateY(0);
}

.about-icon-2 {
    right: -45px;
    bottom: -20px;
    background: #1A237E;
    color: #fff;
}

.about-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.about-icon i {
    color: #ffffff;
    font-size: 25px;
    line-height: 1;
    display: inline-block;
}

@keyframes floatBox {
    0% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

.about-icon-1 {
    animation: floatBox 4s ease-in-out infinite;
}

.about-icon-2 {
    animation: floatBox 4s ease-in-out infinite;
    animation-delay: 2s;
}

@media (prefers-reduced-motion: reduce) {

    .about-icon-1,
    .about-icon-2 {
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 576px) {
    .about-icon {
        width: 48px;
        height: 36px;
    }

    .about-icon-1 {
        left: 8px;
        top: 6px;
    }

    .about-icon-2 {
        right: 8px;
        bottom: 8px;
    }
}

.stats h3 {
    font-size: 32px;
    font-weight: 500;
    color: #009688;
    font-family: poppins, sans-serif;
}

.features ul li {
    font-family: poppins, sans-serif;
    font-size: 16px;
    color: #000000;
    list-style: none;
    line-height: 45px;
}

.features span img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.service-section {
    background-color: #f5f5f5;
    box-shadow: 0px 0px 12px rgba(12, 20, 40, 0.08);
}

.service-section .section-title {
    font-size: 32px;
    color: #1A237E;
    font-family: poppins, sans-serif;
    font-weight: 600;
}

.service-section .section-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    font-family: poppins, sans-serif;
}

.section-cards {
    margin-top: 2rem;
    gap: 25px;
}

.section-card {
    background: transparent;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(12, 20, 40, 0.08);
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    padding: 0px;
}

.card-top {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 2rem 1.5rem 1rem 1.5rem;
    text-align: left;
}

.card-top-blue {
    background: #1a237e;
    color: #fff;
}

.card-top-green {
    background: #009688;
    color: #fff;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon {
    width: 35px;
    height: 35px;
}

.card-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-family: poppins, sans-serif;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 0;
    font-family: poppins, sans-serif;
}

.card-features {
    flex: 1;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background: #fff;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 0 2px 12px rgba(12, 20, 40, 0.04);
}

.service-features li {
    font-family: poppins, sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 45px;
}

.service-features li::marker {
    font-size: 1.2rem;
    color: #009688;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}

.learn-more-blue {
    color: #26a69a;
    font-weight: 500;
    text-decoration: none;
    font-family: poppins, sans-serif;
}

.learn-more-green {
    color: #009688;
    font-weight: 500;
    text-decoration: none;
    font-family: poppins, sans-serif;
}

.arrow {
    font-size: 1.1em;
}

.get-quote {
    box-shadow: 0 2px 12px rgba(12, 20, 40, 0.08);
    padding: 2rem 1.5rem;
    border-radius: 12px;
}

.get-quote h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 12px;
    font-family: poppins, sans-serif;
}

.get-quote p {
    font-family: poppins, sans-serif;
    color: #000;
    line-height: 1.6;
    margin-bottom: 16px;
}

.get-quote .quote-btn {
    background: #009688;
    border: none;
    color: white;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.portfolio-section .section-title {
    font-size: 32px;
    color: #1A237E;
    font-family: poppins, sans-serif;
    font-weight: 600;
    text-align: center;
}

.portfolio-section .section-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    font-family: poppins, sans-serif;
    text-align: center;
    margin: 0 auto 2rem auto;
}

/* Portfolio Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
}

.portfolio-tab {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    color: #243047;
    background: #f5f7fa;
    border: none;
    border-radius: 24px;
    padding: 10px 32px;
    box-shadow: 0 2px 12px rgba(12, 20, 40, 0.08);
    transition: background 0.2s, color 0.2s;
    outline: none;
    cursor: pointer;
}

.portfolio-tab.active {
    background: #009688;
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 150, 136, 0.18);
}

.portfolio-tab:not(.active):hover {
    background: #e0e7ef;
    color: #009688;
}

/* Portfolio Cards */
.portfolio-cards {
    margin-top: 0.5rem;
    gap: 32px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card .card {
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(12, 20, 40, 0.10);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #f5f7fa;
}

.portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: left;
}

.portfolio-category {
    display: inline-block;
    background: #e0f7fa;
    color: #009688;
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 18px;
    margin-bottom: 0.5rem;
    margin-top: -2px;
}

.portfolio-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #243047;
    margin-bottom: 0.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 0.5rem;
}

.portfolio-tag {
    background: #f5f7fa;
    color: #243047;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 14px;
    margin-bottom: 2px;
}

.portfolio-view {
    color: #009688;
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    transition: color 0.2s;
}

.portfolio-view:hover {
    color: #1A237E;
}

.portfolio-view .arrow {
    margin-left: 6px;
    font-size: 1.1em;
}

/* Why Choose Section styles */
.choose-section {
    background: linear-gradient(135deg, #122169 0%, #0aa195 100%);
    color: #eef7fb;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.choose-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
}

.choose-sub {
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.choose-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    color: #ffffff;
    min-height: 140px;
}

.choose-card h5 {
    color: #ffffff;
    margin-bottom: 8px;
}

.choose-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.choose-card .small-stat {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 6px
}

.choose-card .card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff
}

.achievements-wrap .achievements {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.achievements .ach-num {
    font-size: 20px;
    font-weight: 800;
    color: #fff
}

.achievements .ach-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 6px
}

.achievements .ach-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px
}

.process-wrap h4 {
    color: #fff;
    font-weight: 700
}

.process .step {
    background: transparent;
    color: #fff
}

.process .step-num {
    font-weight: 800;
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px
}

.process .step h6 {
    font-weight: 700;
    margin-bottom: 6px
}

.process .step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px
}

.btn-start {
    background: #fff;
    color: #0a8f82;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 700;
}

/*** 

====================================================================
		Testimonial Section
====================================================================

***/

.large-container {
    position: static;
    max-width: 1580px;
    padding: 0px 30px;
    margin: 0 auto;
}

.testimonial-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 210px;
    overflow: hidden;
    background-color: #f5f5f5;

    &:before {
        position: absolute;
        left: -200px;
        top: 22%;
        background-image: url(http://t.commonsupport.com/adro/images/icons/ring-circle.png);
        background-repeat: no-repeat;
        background-position: center;
        width: 701px;
        height: 756px;
        content: "";
        -webkit-animation: fa-spin 25s infinite alternate;
        -moz-animation: fa-spin 25s infinite alternate;
        -ms-animation: fa-spin 25s infinite alternate;
        -o-animation: fa-spin 25s infinite alternate;
        animation: fa-spin 25s infinite alternate;
    }

    .sec-title {
        position: relative;
        margin-bottom: 115px;

        .title {
            margin-bottom: 20px;
        }
    }


    .testimonial-carousel {
        position: relative;
        max-width: 1100px;
        margin: 0 -50px;
    }
}

.sec-title h2 {
    font-size: 36px;
    color: #1a237e;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Niramit", sans-serif;
}

.sec-title p {
    font-size: 18px;
    color: #243047;
    line-height: 30px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    font-family: "Muli", sans-serif;
}

.testimonial-block {
    position: relative;
    padding: 50px;

    .inner-box {
        padding: 80px 105px;
        background-color: #ffffff;
        box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
    }

    .text {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 32px;
        color: #282331;
        font-weight: 400;
        margin-bottom: 50px;
        font-family: "Muli", sans-serif;
    }

    .info-box {
        position: relative;
        padding-left: 115px;
        padding-top: 10px;

        .thumb {
            position: absolute;
            left: 0;
            top: 0;
            height: 82px;
            width: 82px;

            img {
                border: 6px solid #e5e6fa;
                border-radius: 50%;
                overflow: hidden;
                display: block;
                width: 100%;
                box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
            }
        }

        .name {
            position: relative;
            display: block;
            font-size: 21px;
            line-height: 1.2em;
            color: #382c4d;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: "Niramit", sans-serif;
        }

        .designation {
            position: relative;
            display: block;
            font-size: 16px;
            line-height: 24px;
            color: #8053f7;
            font-weight: 400;
            font-family: "Muli", sans-serif;
        }
    }
}

.testimonial-carousel {
    .owl-nav {
        position: absolute;
        right: 75px;
        bottom: 70px;
    }

    .owl-next,
    .owl-prev {
        position: relative;
        display: inline-block;
        height: 75px;
        width: 75px;
        line-height: 75px;
        text-align: center;
        border-radius: 50%;
        background-color: #ffffff;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .owl-next:hover,
    .owl-prev:hover {
        background-color: #00df97;
        box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
    }
}

.arrow-right,
.arrow-left {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 43px;
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.arrow-right {
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
    position: absolute;
    right: 30px;
    top: 120px;

    .image {
        position: relative;
        margin-right: 0;

        img {
            display: inline-block;
            max-width: 100%;
            height: auto;
        }
    }
}

.top-clients-section {
    background-color: #f5f7fa;
}

.top-clients-section .sec-title h2 {
    font-size: 32px;
    color: #1a237e;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Niramit", sans-serif;
}

.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}

.logos-slide img {
    width: 183px;
    height: 83px;
    margin: 0 40px;
}


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.mini-stats-section {
    background-color: #f5f7fa;
    padding-top: 12px;
    padding-bottom: 12px;
}

.mini-stats {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(12, 20, 40, 0.08);
    align-items: center;
    padding: 18px;
}

.mini-stats .stat-item {
    flex: 1 1 18%;
    min-width: 160px
}

.mini-stats .stat-number {
    font-weight: 800;
    color: #009688;
    font-size: 20px
}

.mini-stats .stat-label {
    font-size: 13px;
    color: #243047
}

/* Start Your Project section styles */
.start-project-section {
    background: linear-gradient(180deg, #0f1b58 0%, #0b4f48 100%);
    color: #fff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.start-card {
    background: #fff;
    color: #243047;
    border-radius: 8px;
}

.start-card h3 {
    color: #1A237E;
}

.start-form .form-control,
.start-form .form-select,
.start-form textarea {
    border-radius: 4px;
}

.start-form label {
    font-size: 0.9rem;
    color: #243047;
}

.btn-start {
    background: #009688;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px
}

.contact-info {
    color: #eef7fb
}

.contact-info .info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.contact-info .icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px
}

.contact-info strong {
    color: #fff
}

.socials a {
    color: #fff;
    text-decoration: none;
    font-size: 18px
}

.quick-response {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-top: 18px
}

.quick-response p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 8px 12px
}

/* Footer */
footer {
    background: #1A237E;
    color: var(--lighter);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-column p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--lighter);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

/* Contact Info */
.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--gray);
}

.contact-item i {
    margin-right: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter);
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link:hover::after {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Newsletter */
.newsletter {
    margin-top: 1.5rem;
}

.newsletter p {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.25rem;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--lighter);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.newsletter-btn {
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: var(--lighter);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.85rem;
}

.copyright a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeIn 0.6s ease forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column h3::after {
        width: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-section .sec-title {
        margin-bottom: 50px;
    }

    .testimonial-block {
        padding: 0;

        .inner-box {
            box-shadow: none;
            border: 2px solid #f1f1f1;
        }
    }

    .testimonial-carousel {
        .owl-nav {
            position: relative;
            left: 0;
            bottom: 0;
            margin-top: 20px;
            text-align: center;
        }

        .owl-next,
        .owl-prev {
            border: 2px solid #f1f1f1;
        }
    }
}

@media only screen and (max-width: 1366px) {
    .large-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767.98px) {
    .section-cards {
        flex-direction: column;
    }

    .section-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 520px;
        padding: 3rem 1rem
    }

    .hero h1 {
        font-size: 2.2rem
    }

    @media (max-width: 767.98px) {
        .portfolio-tabs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            width: 100%;
            align-items: stretch;
            justify-items: center;
        }

        .portfolio-tab {
            width: 100%;
            padding: 10px 12px;
            box-sizing: border-box;
        }

        .portfolio-tab {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
    }

    .navbar-nav {
        gap: 0px;
    }

}

@media (max-width: 576px) {
    .buttons {
        display: flex;
        flex-direction: column;
        gap: .6rem;
        align-items: stretch
    }

    .buttons .btn {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem
    }
}

@media (max-width: 767.98px) {
    .portfolio-cards {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        position: relative;
        z-index: 1060
    }

    .navbar-collapse {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -110%;
        background: #fff;
        padding: 1rem 1.25rem 2rem;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
        box-shadow: 0 -10px 30px rgba(12, 20, 40, 0.08);
        transition: bottom .32s cubic-bezier(.2, .9, .2, 1);
        max-height: 72vh;
        overflow: auto;
    }

    .navbar-collapse.show {
        bottom: 0;
    }

    .navbar-nav {
        gap: 12px;
        flex-direction: column;
        align-items: stretch
    }

    .navbar .nav-link {
        padding: .9rem 1rem;
        text-align: center;
        color: #243047;
        background: transparent
    }

    .navbar .navbar-toggler {
        position: relative;
        z-index: 1070
    }
}

@media (max-width: 767.98px) {
    .choose-card {
        min-height: 120px;
    }

    .achievements .ach-sub {
        font-size: 12px
    }

    .achievements .ach-num {
        font-size: 18px
    }
}



@media (max-width: 767.98px) {
    .mini-stats {
        padding: 12px
    }

    .mini-stats .stat-item {
        flex: 1 1 50%;
        min-width: 140px
    }

    .mini-stats .stat-number {
        font-size: 18px
    }
}


@media (max-width: 991.98px) {
    .start-card {
        margin-bottom: 1rem
    }
}

@media (max-width: 576px) {
    .contact-info .info-row {
        flex-direction: row;
        gap: 8px
    }

    .contact-info .icon {
        width: 36px;
        height: 36px
    }
}