@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600&display=swap');

:root {
    --primary: #00072D;
    --white: #fff;
    --accent: #04337a;
    --yellow: #FFD439;
    --gradient: linear-gradient(135deg, #00072D 0%, #001a5c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: "DM Sans", sans-serif; */
    font-family: 'Kanit', sans-serif;
    color: var(--primary);
    overflow-x: hidden;
    background: var(--white);
}
p{
    font-weight: 200;
}

/* Animated Background */

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    will-change: opacity, transform;
}

@media (max-width: 768px) {
    .fade-up {
        transform: translateY(30px);
        transition:
            opacity 0.6s ease,
            transform 0.6s ease;
    }
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.animated-bg span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
}

.animated-bg span:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.animated-bg span:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 70%;
    animation-delay: 3s;
}

.animated-bg span:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 7, 45, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 30px rgba(0, 7, 45, 0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand img {
    filter: invert(1);
    width: 200px;
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
}

.custom-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.custom-dropdown .nav-link svg {
    transition: transform 0.3s ease;
}

.custom-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 7, 45, 0.15);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.custom-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #00072D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.custom-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.custom-dropdown-item:hover {
    background: #00072D;
    color: white;
    padding-left: 1rem;
}

.custom-dropdown-item:hover::before {
    transform: scaleY(1);
}

.custom-dropdown-divider {
    height: 1px;
    background: rgba(0, 7, 45, 0.1);
    margin: 0.5rem 1rem;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .custom-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    /* .custom-dropdown .nav-link svg {
        display: none;
    } */
}

.header-right-btn {
    display: flex;
    margin-left: 40px;
}

.evaluation-btn {
    padding: 10px 20px;
    display: inline-block;
    background: var(--yellow);
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 44px;
    font-size: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 600;
    text-transform: uppercase;
}

.evaluation-btn::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: var(--hover-color);
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease-out;
}

.header-right-btn span {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    transition: 0.3s ease-out;
}

.header-right-btn:hover span {
    transform: rotate(360deg);
    transition: 0.3s ease-out;
}

.header-right-btn span svg {
    width: 15px;
    height: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #001a5c 100%);
    color: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

.img-banner {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}
.img-banner img {
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-right: 50px;
    padding-top: 70px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
    font-size: clamp(1rem, 2vw, 1rem);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    max-width: 650px;
    font-weight: 200;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-custom {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: var(--primary);
    background: var(--yellow);
}

.btn-primary-custom:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease 0.5s backwards;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
}

.btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-secondary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary-custom:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-bullets {
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 10px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 13px;
    flex-direction: column;
    padding: 1rem;
    background: #ffffff12;
    gap: 7px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 6%);
    font-weight: 200;
}
.hero-bullet strong {
    font-size: 15px;
    font-weight: 500;
}

.hero-bullet i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-button a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.banner-button a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--white);
}

/* Trust Bar */
.trust-bar {
    padding: 4rem 0;
    background: var(--white);
}

.trust-stat {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid #dddddd6b;
    opacity: 0;
    transform: translateY(40px);
}

.trust-stat:hover {
    transform: translateY(-10px);
}

.trust-stat h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.trust-stat p {
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

/* WOW Offer Section */
.wow-offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.score-card {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    /* box-shadow: 0 20px 60px rgba(0, 7, 45, 0.1); */
    border: 1px solid rgba(0, 7, 45, 0.05);
}

.score-card h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.score-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.score-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 7, 45, 0.1);
    display: flex;
    align-items: center;
}

ul.score-features li p {
    font-size: 14px;
    margin: 0;
}

.score-features li:last-child {
    border-bottom: none;
}

.score-features i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control,
.form-select {
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid rgba(0, 7, 45, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    background: var(--primary);
    color: var(--white);
}

.how-it-works .section-title {
    color: var(--white);
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: #ffffff12;
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgb(255 255 255 / 12%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    font-weight: 200;
}

/* Service Cards */
.service-card,
.industry-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 7, 45, 0.05);
    height: 100%;
}

.service-card:hover,
.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 7, 45, 0.15);
}

.service-icon,
.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0144a7 0%, #00072d 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-card h3,
.industry-card h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.link-ct {
    color: var(--primary);
    text-decoration: none;
}

.link-ct span svg {
    width: 15px;
    height: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.contact-info i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* services */
.service-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 7, 45, 0.15);
    border-color: var(--accent);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

.service-head {
    position: sticky;
    top: 150px;
}

.about-sec {
    background: var(--primary);
    color: var(--white);
}

.about-sec .section-title {
    color: var(--white);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

/* news */
.blog-listing-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-area {
    padding: 1.5rem;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
}

.blog-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid #f0f0f0;
    border-radius: 15px;
}

.blog-text p {
    font-size: 14px;
    margin-top: 14px;
}

.news-area img {
    border-radius: 15px;
    height: 290px;
    object-fit: cover;
}

.news-content {
    margin-top: 1.5rem;
}

.news-content h3 {
    color: #000;
    font-weight: 600;
}

.news-content h3 a {
    color: var(--primary);
    text-decoration: none;
}

.read-more {
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
}
.blog-nxt-prv button a {
    color: #fff;
    text-decoration: none;
}
/* contact */
.contact-img {
    float: right;
    width: 100%;
    height: 100%;
    padding-left: 50px;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.contact-form .form-control {
    margin-bottom: 30px;
}

.address-details {
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.address-details li {
    margin-bottom: 10px;
}

.address-details a {
    color: var(--primary);
    text-decoration: none;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* smart websites */
/* Hero Section */
.hero-section {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bnner.png);
    opacity: 0.2;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient);
    /* border-radius: 50%; */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 1.35rem;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
}

.smart-web .btn-primary-custom {
    background: var(--yellow) !important;
    color: var(--primary) !important;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 212, 57, 0.3);
    text-transform: capitalize;
}

.smart-web .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 212, 57, 0.4);
    background: #ffd900;
    color: var(--primary);
}

.smart-web .btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.smart-web .btn-secondary-custom:hover {
    background: var(--white);
    color: var(--primary);
}

/* Deliverables Section */
.smart-web .deliverables-section {
    padding: 100px 0;
    background: var(--white);
}

.smart-web .deliverables-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
    text-align: center;
}

.smart-web .deliverable-item {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background: #f8f9fb;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #dddddd3b;
    height: 100%;
}

.smart-web .deliverable-item:hover {
    background: #eef1f5;
    transform: translateX(8px);
}

.smart-web .check-icon {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
    font-weight: 800;
    color: var(--primary);
}

.smart-web .deliverable-item p {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* our mission sec start */
.mission-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.mission-conent {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-img img {
    object-fit: cover;
    height: 500px;
}

/* contact page css */
.contact-details-sec .service-card {
    text-align: center;
}

.contact-details-sec .service-icon {
    margin: 0 auto 25px;
}

/* Responsive */
@media (max-width: 991px) {
    .smart-web .hero-section h1 {
        font-size: 2.5rem;
    }

    .smart-web .hero-subheadline {
        font-size: 1.15rem;
    }

    .smart-web .smart-section h2,
    .smart-web .deliverables-section h2 {
        font-size: 2.2rem;
    }

    .smart-web .module-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .smart-web .hero-section {
        padding: 80px 0 60px;
    }

    .smart-web .hero-section h1 {
        font-size: 2rem;
    }

    .smart-web .hero-subheadline {
        font-size: 1rem;
    }

    .smart-web .btn-primary-custom,
    .smart-web .btn-secondary-custom {
        padding: 14px 28px;
        font-size: 1rem;
        width: auto !important;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .smart-web .smart-section,
    .smart-web .deliverables-section {
        padding: 60px 0;
    }

    .smart-web .smart-section h2,
    .smart-web .deliverables-section h2 {
        font-size: 1.8rem;
    }

    .smart-web .smart-intro {
        font-size: 1.05rem;
    }

    .smart-web .module-card {
        padding: 25px;
    }
}

/* Problems Section */
.problems-section {
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 212, 57, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.problems-section .container {
    position: relative;
    z-index: 1;
}

.problem-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(134 134 134 / 10%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.problem-icon i {
    font-size: 1.5rem;
}

.problem-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 200;
}

/* Solution Section */
.solution-section {
    background: var(--white);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 7, 45, 0.2);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.step-arrow {
    position: absolute;
    top: 30px;
    right: -20px;
    color: var(--yellow);
    font-size: 2rem;
    display: none;
}

@media (min-width: 992px) {
    .step-card:not(:last-child) .step-arrow {
        display: block;
    }
}

.step-description {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: var(--gradient);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: #ffffff12;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgb(255 255 255 / 12%);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ffffff12;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: var(--yellow);
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-item p {
    font-weight: 200;
    color: var(--white);
}

.features-section .section-title {
    color: #fff;
}

/* Automations Section */
.automations-section {
    position: relative;
}

.automation-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.automation-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 212, 57, 0.3);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.automation-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--yellow);
    transform: scale(1.02);
}

.automation-badge {
    background: var(--yellow);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.automation-content {
    flex: 1;
}

.automation-title {
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 8px;
    color: var(--primary);
}

.automation-desc {
    color: var(--primary);
    font-size: 1.05rem;
}

.flex-btnn button {
    float: right;
}
h1.blog-title a{
    color: var(--primary);
    text-decoration: none;
}
.blog-text h3 {
    font-size: 24px;
}

/*footer sec start*/
.footer {
    background: #00072d;
    position: relative;
    padding-top: 80px;
    background-image: url(../img/ft-bg.webp);
    background-position: top right;
    background-repeat: no-repeat;
    background-blend-mode: multiply !important;
}

.footer-list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 45% 25% 30%);
    padding: 0;
    border-bottom: 1px solid #ffffff1f;
    list-style: none;
}

.footer-list li {
    border-right: 1px solid #ffffff1f;
}

.social-list {
    display: table;
    list-style: none;
    margin: 0 auto;
    padding-left: 0;
    padding-bottom: 50px;
}

.social-list li {
    border: 0;
}

.social-list li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #fff;
    text-decoration: none;
    padding-bottom: 10px;
    display: block;
}

.footer-links {
    display: table;
    list-style: none;
    margin: 0 auto;
    padding-left: 0;
    padding-bottom: 50px;
}

.footer-links li {
    border: 0;
}

.footer-links li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #fff;
    text-decoration: none;
    padding-bottom: 10px;
    display: block;
}

.footer-list li:last-child {
    border: 0;
}

.address-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    list-style: none;
    padding: 0;
    padding-top: 80px;
    margin: 0;
}

.address-list h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.37em;
    margin-bottom: 15px;
}

.address-list p {
    font-size: 16px;
    font-weight: 200;
    line-height: 23.5px;
    color: #999;
    margin: 0;
}

.newsletter {
    padding: 80px 0 0 158px;
    position: relative;
}

.newsletter input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 22px 0;
    font-size: 27px;
    color: #fff;
    font-weight: 300;
}

.newsletter input::placeholder {
    color: #fff;
}

.letterbtn {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    outline: none;
    font-size: 40px;
    color: #fff;
    top: 0%;
    height: 100%;
}

.footer-address .col-lg-6:first-child {
    position: relative;
}

.footer-address .col-lg-6:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 50%;
    background: #ffffff1f;
    top: 50%;
}

.copyright-links {
    display: flex;
    list-style: none;
    gap: 50px;
    justify-content: end;
    padding: 0;
    margin: 0;
}

.copyright-links li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: #fff;
    text-decoration: none;
}

.copy-pera p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.5px;
    color: #999;
    margin: 0;
}

.copy-pera p a {
    color: #fff;
    text-decoration: none;
}

.copy-row {
    padding: 0px 0 50px;
    margin-top: 80px;
}

.divider-ft {
    height: 1px;
    background: #ffffff1f;
    margin-bottom: 30px;
}

.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    background: #333;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

/*footer sec end*/

/* faq sec */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background: var(--yellow);
    transition: background 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    flex: 1;
    margin-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}


/* blog page sec */
.blog-side-part {
    position: sticky;
    top: 100px;
}

.search-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #dddddd6b;
}

.blog-area img {
    border-radius: 10px;
}

.search-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 11px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--yellow);
}

.recent-posts {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #dddddd6b;
    margin-bottom: 25px;
}

.recent-posts h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-item:hover .post-thumb img {
    transform: scale(1.1);
}

.post-details {
    flex: 1;
}

.post-details h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-details h5 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-details h5 a:hover {
    color: var(--primary);
}

.post-meta-small {
    font-size: 12px;
    color: #6c757d;
}

.cetagory-lsit li a {
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 15px 20px;
    border-radius: 10px;
    justify-content: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination li a:hover {
    background: #f0f0f0;
    color: #667eea;
}

.pagination li.active a {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination li.disabled a {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination li.prev a,
.pagination li.next a {
    font-weight: 600;
    padding: 0 15px;
}

.pagination li.prev a:hover,
.pagination li.next a:hover {
    background: var(--yellow);
    color: #fff;
}

.pagination li.dots {
    color: #999;
    font-weight: bold;
    padding: 0 5px;
}

/* Alternative Style 2 - Rounded */
.pagination-rounded .pagination li a {
    border-radius: 50%;
    min-width: 45px;
    height: 45px;
    padding: 0;
}

/* Alternative Style 3 - Simple */
.pagination-simple .pagination {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.pagination-simple .pagination li a {
    border: 2px solid #e0e0e0;
    background: #fff;
}

.pagination-simple .pagination li a:hover {
    border-color: var(--primary);
    background: #fff;
}

.pagination-simple .pagination li.active a {
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 576px) {
    .pagination {
        padding: 10px 15px;
        gap: 5px;
    }

    .pagination li a {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 0 8px;
    }

    .pagination li.hide-mobile {
        display: none;
    }
}

/* ================== responsive css ================== */
@media (max-width:1400px) {
    .section-title {
        font-size: clamp(2rem, 4vw, 2.9rem);
    }

    .hero-bullet {
        font-size: 12px;
    }

    .nav-link {
        margin: 0 0.5rem;
    }

    .header-right-btn {
        margin-left: 15px;
    }

    .service-card,
    .industry-card {
        padding: 1.5rem;
    }

    .copyright-links {
        gap: 40px;
    }
}

@media only screen and (min-width:992px) and (max-width: 1199px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-bullet {
        font-size: 9px !important;
    }

    .banner-button a {
        font-size: 11px;
    }

    .hero-content {
        padding-right: 30px;
    }

    .nav-link {
        font-size: 13px;
        margin: 0 0.2rem !important;
    }

    .evaluation-btn {
        font-size: 11px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .score-card h2 {
        font-size: 1.7rem;
    }

    .score-features li {
        font-size: 14px;
    }

    .service-card h3,
    .industry-card h3 {
        font-size: 1.5rem;
    }

    .service-card,
    .industry-card {
        padding: 1rem;
    }

    .copyright-links {
        gap: 30px;
    }

    .copyright-links li a {
        font-size: 14px;
    }
}

/* Mobile and Tablet Styles Only - Navbar Nav */

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 10px !important;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #333;
        font-weight: 500;
    }

    .nav-link:hover {
        background-color: #f8f9fa;
    }

    /* Custom Dropdown Styles for Mobile */
    .custom-dropdown {
        position: relative;
    }

    .custom-dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .custom-dropdown.active .custom-dropdown-menu {
        max-height: 500px;
        padding: 5px 0;
    }

    .custom-dropdown-item {
        padding: 12px 25px !important;
        display: block;
        border-radius: 0 !important;
        color: #555;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .custom-dropdown-item:hover {
        background-color: #e9ecef;
        padding-left: 30px !important;
    }

    .custom-dropdown .nav-link svg {
        transition: transform 0.3s ease;
        margin-left: 8px;
    }

    .custom-dropdown.active .nav-link svg {
        transform: rotate(180deg);
    }

    .custom-dropdown.active .nav-link {
        background-color: #f8f9fa;
    }
    .custom-dropdown.active .nav-link::after{
        width: 10px !important;
    }
}

/* Mobile View (below 768px) */
@media (max-width: 767px) {
    .navbar-nav {
        padding: 10px 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 14px 10px !important;
    }

    .custom-dropdown-item {
        font-size: 14px;
        padding: 11px 25px !important;
    }

    .custom-dropdown-item:hover {
        padding-left: 30px !important;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .nav-link {
        font-size: 15px;
        padding: 12px 8px !important;
    }

    .custom-dropdown-item {
        font-size: 13px;
        padding: 10px 20px !important;
    }

    .custom-dropdown-item:hover {
        padding-left: 25px !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    section {
        padding: 4rem 0;
    }

    .hero-bullet {
        font-size: 12px;
    }

    .header-right-btn {
        display: none;
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .header-right-btn {
        display: none;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero .subheadline {
        font-size: 12px;
    }

    .img-banner img {
        height: 100%;
    }

    .img-banner {
        height: 100%;
    }

    .hero-bullets {
        grid-template-columns: repeat(1, 1fr);
    }

    .trust-stat h3 {
        font-size: 2.5rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .step-card p {
        font-size: 13px;
    }

    .btn-primary-custom {
        width: 50% !important;
    }

    .news-sec .btn-primary-custom {
        width: 100% !important;
    }

    .address-details a {
        font-size: 19px;
    }

    .address-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .newsletter {
        padding: 80px 0 0 30px;
    }

    .row.copy-row {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
}

@media only screen and (min-width:576px) and (max-width:767.98px) {
    .img-banner img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .img-banner {
        position: relative;
        width: 100%;
    }

    .hero {
        min-height: auto;
        flex-flow: wrap;
    }

    .hero-content {
        padding-right: 15px;
        padding-top: 30px;
    }

    /* .hero-bullets {
        grid-template-columns: repeat(2, 1fr);
    } */

    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .score-features li {
        font-size: 14px;
    }

    .score-features li p {
        font-size: 13px;
    }

    .score-card {
        padding: 2rem;
    }

    .btn-primary-custom {
        width: 100% !important;
    }

    .blog-listing-area {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-details a {
        font-size: 16px;
    }

    .contact-img {
        display: none;
    }

    .footer-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links li a {
        font-size: 14px;
    }

    .social-list li a {
        font-size: 14px;
    }

    .footer-address .col-lg-6:first-child::after {
        opacity: 0;
    }

    .address-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .newsletter {
        padding: 40px 0 0 0px;
    }

    .copy-row {
        flex-direction: column-reverse;
        margin-top: 50px;
    }

    .copyright-links {
        flex-flow: wrap;
        gap: 17px;
        justify-content: center;
        border-top: 1px solid #ffffff1f;
        padding-top: 30px;
    }

    .copy-pera p {
        text-align: center;
        margin-top: 30px;
    }

    .divider-ft {
        display: none;
    }

    .header-right-btn {
        display: none;
    }

    .news-area img {
        height: auto;
    }

    .navbar-brand img {
        width: 160px;
    }
}

@media only screen and (min-width:320px) and (max-width:575.98px) {
    .img-banner img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .img-banner {
        position: relative;
        width: 100%;
    }

    .hero {
        min-height: auto;
        flex-flow: wrap;
    }

    .hero-content {
        padding-right: 15px;
        padding-top: 30px;
    }

    .hero-bullets {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .score-features li {
        font-size: 14px;
    }

    .score-features li p {
        font-size: 13px;
    }

    .score-card {
        padding: 2rem;
    }

    .btn-primary-custom {
        width: 100% !important;
    }

    .blog-listing-area {
        grid-template-columns: repeat(1, 1fr);
    }

    .address-details a {
        font-size: 16px;
    }

    .contact-img {
        display: none;
    }

    .footer-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-list li {
        border-right: 0;
    }

    .social-list {
        margin: 50px 0 0;
    }

    .footer-links {
        margin: 0;
    }

    .address-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .newsletter {
        padding: 40px 0 0 0px;
    }

    .copy-row {
        flex-direction: column-reverse;
        margin-top: 50px;
    }

    .copyright-links {
        flex-flow: wrap;
        gap: 17px;
        justify-content: center;
        border-top: 1px solid #ffffff1f;
        padding-top: 30px;
    }

    .copy-pera p {
        text-align: center;
        margin-top: 30px;
    }

    .divider-ft {
        display: none;
    }

    .header-right-btn {
        display: none;
    }

    .news-area img {
        height: auto;
    }

    .navbar-brand img {
        width: 160px;
    }
}