:root {
    --primary-color: #1e4e8c;
    /* Steel Blue from logo */
    --secondary-color: #6a4fb3;
    /* Purple from logo */
    --accent-color: #f4f6f9;
    /* Light neutral */
    --dark-color: #1c1c1c;
    --white-color: #ffffff;
}

/* body {
    font-family: 'Segoe UI', sans-serif;
} */

body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

img {
    border-radius: 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Navbar Styling */
.navbar-custom {
    background: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white-color) !important;
    padding: 8px 18px;
    border-radius: 6px;
    margin-left: 20px;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary-color);
    color:#fff;
}

/* Sticky Effect */
.sticky-top {
    z-index: 999;
}


/* HERO CSS */

.hero-overlay {
    position: relative;
    background: url('../images/hero-bg.webp') center center / cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: 16px;
    color: #e6e6e6;
    line-height: 1.6;
    z-index: 2;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--secondary-color);
}

.btn-hero-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.hero-service-card {
    background: rgba(255,255,255,0.95);
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.hero-service-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.hero-service-card h6 {
    font-weight: 600;
    margin: 0;
    color: var(--dark-color);
}

.hero-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.who-we-are {
    background: var(--accent-color);
}

.who-we-are img {
    border-radius: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.who-we-are p {
    color: #555;
    line-height: 1.7;
}

.who-we-are li {
    margin-bottom: 10px;
    font-weight: 500;
}

.what-we-offer {
    background: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}

.offer-card {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.offer-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-card ul {
    padding-left: 0;
    list-style: none;
}

.offer-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.offer-card ul li::before {
    content: \"\\f00c\";
    font-family: \"Font Awesome 6 Free\";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.our-process {
    background: var(--accent-color);
}

.parallax-process {
    position: relative;
    background: url('../images/process-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 150px 0;
    overflow: hidden;
    /* height: 550px; */
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.2));
}

.parallax-process .container {
    position: relative;
    z-index: 2;
}

/* Improve card visibility on dark bg */
.parallax-process .process-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
}

.process-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    color: #666;
    font-size: 14px;
}

.why-choose-us {
    background: #fff;
}

.why-card {
    padding: 25px;
    border-radius: 10px;
    background: var(--accent-color);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 14px;
}

.peb-advantages {
    background: var(--accent-color);
}

.advantage-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.advantage-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.advantage-card h6 {
    font-weight: 600;
    font-size: 14px;
}

/* .industries {
    background: #fff;
} */

.industries {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    padding: 80px 0;
}

.industry-card {
    padding: 20px;
    background: var(--accent-color);
    border-radius: 10px;
    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.industry-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.industry-card p {
    font-weight: 500;
    margin: 0;
}

.certifications {
    background: var(--accent-color);
}

.cert-logo {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.cert-logo img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
}

.cert-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.clients {
    background: #fff;
}

.client-logo {
    padding: 20px;
    transition: 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.final-cta {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    padding: 80px 0;
    color: #fff;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
}

.cta-subtitle {
    max-width: 650px;
    margin: auto;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-primary {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: #f1f1f1;
    color:#000;
}

.btn-cta-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.site-footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 60px 0 30px;
}

.site-footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.site-footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.site-footer i {
    color: var(--primary-color);
}

.consultation-overlay {
    position: relative;
    background: url('../images/contact-bg.jpg') center center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(0, 0, 0, 0.45) 100%);
}

.consultation-overlay .container {
    position: relative;
    z-index: 2;
}

.section-badge-light {
    display: inline-block;
    background: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
}

.consultation-title-light {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.consultation-text-light {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.btn-consult-call-light {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-consult-call-light:hover {
    opacity: 0.9;
    border:1px solid #fff;
}

.consultation-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.consultation-form-card .form-control {
    height: 48px;
    border-radius: 6px;
}

.consultation-form-card textarea.form-control {
    height: auto;
}

.btn-consult-submit {
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
}

.btn-consult-submit:hover {
    background: var(--secondary-color);
    color:#fff;
}


/* About us page style start  */
.breadcrumb-section {
    position: relative;
    background: url('../images/breadcrumb.jpg') center center / cover no-repeat;
    padding: 140px 0 100px;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.65));
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    font-size: 15px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .active {
    color: #fff;
    font-weight: 500;
}

.about-intro {
    background: #fff;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.vision-mission-section {
    background: var(--accent-color);
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vm-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.vm-card p {
    color: #555;
    line-height: 1.7;
}

.core-values-section {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    padding: 80px 0;
}

.value-card {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.value-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.our-approach-section {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f4f6f9 100%
    );
}

.our-approach-section p {
    color: #555;
    line-height: 1.7;
}

.approach-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.approach-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.approach-box i {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 5px;
}

.approach-box h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.approach-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.contact-info-section {
    background: #fff;
}

.contact-info-card {
    background: var(--accent-color);
    padding: 35px 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: #555;
}

.contact-form-map-section {
    background: var(--accent-color);
}

.contact-form .form-control {
    height: 48px;
    border-radius: 6px;
}

.contact-form textarea.form-control {
    height: auto;
}

.btn-contact-submit {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-contact-submit:hover {
    background: var(--secondary-color);
}

.map-wrapper {
    height: 100%;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.form_box{
    border-radius: 12px;
}

.services-intro {
    background: #fff;
}

.services-intro .section-subtitle {
    max-width: 750px;
    margin: auto;
    color: #555;
    line-height: 1.7;
}

.service-detail {
    background: var(--accent-color);
}

.service-detail:nth-child(even) {
    background: #fff;
}

.service-detail h3 {
    font-weight: 600;
    color: var(--dark-color);
}

.service-detail p {
    color: #555;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.service-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.gradient-service {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
}

.gradient-service p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.service-list-light {
    list-style: none;
    padding: 0;
}

.service-list-light li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: rgba(255,255,255,0.95);
}

.service-list-light li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fff;
}

.why-choose-services{
    background: linear-gradient(135deg, #ffffff 0%, #f4f6f9 100%);
}

.why-choose-services .section-title {
    color: var(--dark-color);
}

.why-choose-services p {
    color: var(--dark-color);
}

.why-service-card {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    height: 100%;
}

.why-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.why-service-card i {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-service-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.why-service-card p {
    font-size: 14px;
    color: #555;
}

/* WhatsApp Button */
.whatsapp-float{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

/* Go Top Button */
#goTopBtn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* Hover */
.whatsapp-float:hover{
    transform: scale(1.1);
}

#goTopBtn:hover{
    background: #333;
}

/* ===============================
   BLOG PAGE
================================= */

.blog-page-section {
    padding: 70px 0;
    background: #f8fbff;
}

/* Card */

.blog-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Image */

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Content */

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: #888;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.blog-content p {
    font-size: 14px;
    color: #555;
}

/* Read More */

.read-more {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
}

/* Hover */

.blog-card:hover {
    transform: translateY(-6px);
}

/* ===============================
   PAGINATION
================================= */

.pagination-wrap .page-btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.pagination-wrap .page-btn.active,
.pagination-wrap .page-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ===============================
   BLOG DETAIL
================================= */

.blog-detail-section {
    padding: 70px 0;
    background: #f8fbff;
}

.blog-detail {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

/* Image */

.blog-detail-img img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Content */

.blog-detail-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-detail-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Blockquote */

.blog-detail-content blockquote {
    background: #e8f1fb;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    font-style: italic;
}

/* ===============================
   SIDEBAR
================================= */

.blog-sidebar .sidebar-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

.sidebar-box h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Search */

.sidebar-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

/* List */

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    margin-bottom: 10px;
}

.sidebar-box ul li a {
    text-decoration: none;
    color: #333;
}

.sidebar-box ul li a:hover {
    color: var(--primary-color);
}


.blog-card a{
    color:var(--primary-color);
}

.sidebar-box form{
    display:flex;
}

.sidebar-box form .search-field{
    width:100%;
}
.sidebar-box form .search-submit{
    width:20%;
}

.project-title {
    font-weight: 600;
    color: var(--dark-color);
}

.gallery-img {
    border-radius: 10px;
    transition: 0.3s ease;
    height: 250px;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* single service page design  */

.card-custom {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: #fff;
}

.banner img {
    width: 100%;
    border-radius: 10px;
}

h2,
h3 {
    color: var(--dark-color);
    margin-top: 20px;
    font-size: 28px;
}

p {
    font-size: 14px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.check-list li::before {
    content: "✔";
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: bold;
}

.bold {
    font-weight: bold;
}



@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .who-we-are p {
        text-align: center;
    }

    .who-we-are ul {
        text-align: center;
    }

    .parallax-process {
        background-attachment: scroll;
    }
}

@media(max-width:768px) {
    .hero-overlay{
        height:auto;
    }
    .cta-title {
        font-size: 28px;
    }

    .cta-buttons a {
        display: block;
        margin-bottom: 12px;
    }

    .breadcrumb-section {
        padding: 100px 0 70px;
    }

    .breadcrumb-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-buttons a {
        display: block;
        margin-bottom: 10px;
    }
}