:root {
    --color-c4c4c4: #C4C4C4;
    --color-707070: #707070;
    --color-016ab5: #016AB5;
    --color-ffffff: #FFFFFF;
    --color-dark-green: #27475E;
    --color-text-dark: #2C3E50;
    --color-overlay: rgba(1, 106, 181, 0.85);
    --color-overlay-light: rgba(1, 106, 181, 0.15);
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    align-items: center;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

/* Custom animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Custom utility classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards 0.3s;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.animate-bounce-slow {
    animation: bounce 2s ease-in-out infinite;
}

/* Hero background */
.hero-bg {
    background-image: url('/assets/hero-section/hero-section-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* About background - DESKTOP (default) */
.about-bg {
    background-image: url('/assets/about-us-bg.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

.about-bg {
    opacity: 0;
    animation:
        fadeInBG 1.5s ease-out forwards,
        softMoveBG 5s ease-in-out infinite;
}

@keyframes fadeInBG {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softMoveBG {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-12px);
    }

    100% {
        transform: translateX(0);
    }
}


.vision-bg {
    background-image: url('/assets/vision.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

.vision-bg {
    opacity: 0;
    animation:
        fadeInBG 1.5s ease-in-out forwards,
        softMoveBG 5s ease-in infinite;
}

/* MOBILE styles for about and vision backgrounds */
@media (max-width: 767px) {
    .about-bg {
        background-image: url('/assets/about-us-bg.png');
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
    }

    .vision-bg {
        background-image: url('/assets/vision.png');
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }
}

/* Mobile menu styles */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-open {
    transform: translateX(0);
}

/* ======================================== */
/* SLIDER FIXES FOR MOBILE STABILITY */
/* ======================================== */

/* Hero Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
}

/* Slider Wrapper - Fixed height */
.slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
}

@media (min-width: 768px) {
    .slider-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .slider-wrapper {
        min-height: 420px;
    }
}

/* Slide - Fixed positioning */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    background: transparent;
    z-index: 1;
}

.slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
}

/* Slide Content Container */
.hero-cisco-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 60px);
    /* Subtract header height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

/* Ensure consistent height for all slides */
.slide>* {
    flex-shrink: 0;
}

.hero-cisco-text {
    flex: 1;
    text-align: justify;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Fix for mobile initial render */
@media (max-width: 767px) {

    /* Prevent layout shift on mobile */
    .hero-cisco {
        height: auto;
        min-height: 450px;
    }

    /* Ensure slides don't overlap during initial load */
    .slide:not(.slide-active) {
        display: none !important;
    }

    /* Mobile-specific height adjustments */
    .slider-wrapper {
        height: 450px !important;
        min-height: 450px !important;
    }

    /* Better text readability on mobile */
    .hero-cisco-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        text-align: justify;
    }
}

/* Prevent text overflow on mobile */
@media (max-width: 480px) {
    .hero-cisco-content {
        padding: 12px !important;
    }

    .hero-cisco-text {
        padding: 8px !important;
    }

    .hero-cisco-text p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
}

/* Scrollbar styling for slide content */
.hero-cisco-content::-webkit-scrollbar {
    width: 4px;
}

.hero-cisco-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.hero-cisco-content::-webkit-scrollbar-thumb {
    background: rgba(1, 106, 181, 0.5);
    border-radius: 2px;
}

.hero-cisco-content::-webkit-scrollbar-thumb:hover {
    background: rgba(1, 106, 181, 0.7);
}

/* Ensure proper stacking on mobile */
@media (max-width: 767px) {
    .slide-active {
        position: relative !important;
    }

    /* Hide non-active slides completely on mobile */
    .slide:not(.slide-active) {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Prevent FOUC (Flash of Unstyled Content) */
.slider-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Fix for slider images */
.hero-cisco-logo {
    display: block;
    max-width: 100%;
    height: auto;
}

.owl-theme .owl-nav {
    margin-top: 0 !important;
}

.owl-nav {
    top: 37% !important;
}

/* Hamburger animation */
.hamburger-top-open {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-middle-open {
    opacity: 0;
}

.hero-brand-text {
    color: var(--color-dark-green);
}

.hamburger-bottom-open {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 767px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Custom gradient for mobile menu */
.mobile-menu-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-016ab5) 0%, #2a8bd6 100%);
}

/* Fix for hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Ensure slider images are visible */
.hero-cisco {
    position: relative;
    z-index: 3;
}

/* Slider dot active state - UPDATED TO THIN RECTANGULAR */
.slider-dot {
    width: 12px !important;
    height: 3px !important;
    border-radius: 1px !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.slider-dot.active-dot {
    width: 24px !important;
    height: 3px !important;
    border-radius: 1px !important;
    background-color: #ffffff !important;
}

@media (max-width: 767px) {
    .slider-dot.active-dot {
        width: 20px !important;
    }
}

/* Contact button styles - UPDATED */
.contact-btn {
    border: 2px solid #016AB5;
    color: #016AB5;
    background-color: transparent;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #016AB5;
    color: white;
    transform: translateY(-2px);
}

.contact-btn.scrolled {
    border: 2px solid #016AB5;
    color: #016AB5;
    background-color: transparent;
}

.contact-btn.scrolled:hover {
    background-color: #016AB5;
    color: white;
}

/* Products image styling */
.products-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Products section spacing */
.products-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

@media (max-width: 767px) {
    .products-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

/* Partners and Clients sections */


.partners-clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #016AB5;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}


/* Owl Carousel Custom Styles */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slider-item {
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    margin: 0 10px;
}


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

/* Owl Carousel Navigation - FIXED POSITION */
.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    margin: -40px !important;
    border-radius: 999px !important;
    background-color: transparent !important;
    border-color: var(--color-016ab5) !important;
    color: var(--color-016ab5) !important;
    border: 1.5px solid !important;
}

.owl-nav button:hover {
    background-color: #015a9a !important;
    transform: scale(1.1);
}

.owl-nav button span {
    font-size: 24px;
    line-height: 1;
}

.owl-prev {
    margin-left: -20px !important;
}

.owl-next {
    margin-right: -20px !important;
}


#navbar,
#navbar div,
#navLogo {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Ensure logo is properly visible on non-home pages */
.nav-logo-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Owl Carousel Dots - FIXED TO THIN RECTANGULAR */
.owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.owl-dot {
    width: 12px;
    height: 3px;
    border-radius: 1px;
    background-color: #cbd5e0 !important;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.owl-dot.active {
    width: 24px;
    height: 3px;
    border-radius: 1px;
    background-color: #016AB5 !important;
}

/* Remove default dot styles that cause doubling */
.owl-dot span {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-slider-item {
        height: 120px;
        padding: 15px;
    }

    .logo-img {
        max-height: 80px;
    }

    .owl-nav button {
        width: 35px;
        height: 35px;
    }

    .owl-prev {
        margin-left: -15px !important;
    }

    .owl-next {
        margin-right: -15px !important;
    }
}

@media (max-width: 480px) {
    .logo-slider-item {
        height: 100px;
        padding: 10px;
    }

    .logo-img {
        max-height: 70px;
    }

    .owl-nav button {
        width: 30px;
        height: 30px;
    }

    .owl-nav button span {
        font-size: 20px;
    }

    .owl-prev {
        margin-left: -10px !important;
    }

    .owl-next {
        margin-right: -10px !important;
    }

    .owl-dot {
        width: 10px;
        height: 2px;
    }

    .owl-dot.active {
        width: 20px;
        height: 2px;
    }
}

/* Hide navigation on very small screens */
@media (max-width: 360px) {
    .owl-nav {
        display: none;
    }
}

/* Contact Section Enhancements */
.contact-section {
    /*background: linear-gradient(135deg, #f3f9ff 0%, #e8f2fb 100%);*/
}

.contact-form,
.contact-item,
.contact-map {
    transition: all .3s ease;
}

.contact-form:hover,
.contact-item:hover,
.contact-map:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(1, 106, 181, 0.15);
}

.text-gradient {
    background: linear-gradient(90deg, #016AB5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(90deg, #016AB5, #0ea5e9);
    margin: auto;
    border-radius: 4px;
}

.glow-effect {
    box-shadow: 0 4px 20px rgba(1, 106, 181, 0.08);
}

.contact-map iframe {
    filter: grayscale(20%) contrast(105%);
}

/* Contact Button Styles */
.btn-contact {
    background-color: var(--color-016ab5);
    color: var(--color-ffffff);
    transition: 0.25s ease;
}

.btn-contact:hover {
    background-color: #015B9A;
    /* darker shade of #016AB5 */
}

.btn-contact:active {
    background-color: #014D86;
}

/* ======================================== */
/* BLOG SECTION STYLES - UPDATED DESIGN */
/* ======================================== */

/* Blog Card Container */
.blog-card {
    background: var(--color-ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e8e8e8;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Image Container */
.blog-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(1, 106, 181, 0.1), rgba(1, 106, 181, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Blog Content */
.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--color-ffffff);
}

/* Blog Title */
.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color-016ab5);
}

/* Blog Excerpt */
.blog-excerpt {
    font-size: 14px;
    color: var(--color-707070);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Blog Meta Information */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
    margin-top: auto;
}

/* Blog Date */
.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-016ab5);
    font-size: 14px;
    font-weight: 500;
}

.blog-date svg {
    flex-shrink: 0;
}

/* Read More Link */
.blog-read-more {
    background: var(--color-016ab5);
    color: var(--color-ffffff);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.blog-read-more:hover {
    background: #015a9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 106, 181, 0.3);
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* See More Link */
.see-more-link {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Responsive Design for Blog Section */
@media (max-width: 1024px) {
    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-title {
        font-size: 17px;
    }

    .blog-excerpt {
        font-size: 12px;
    }

    .blog-date {
        font-size: 13px;
    }

    .blog-read-more {
        font-size: 13px;
        padding: 7px 16px;
    }
}

@media (max-width: 480px) {
    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 11px;
    }

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

    .blog-read-more {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Blog Grid Layout */
.blogs-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Animation for blog cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

/* Ensure proper spacing for the blog section */
.blogs {
    position: relative;
    z-index: 1;
}

/* Blog post body styles (for individual post pages) */
.post-body p {
    margin-bottom: 1.25rem;
}

.post-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #016ab5;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.post-body h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #016ab5;
    margin-top: 1.875rem;
    margin-bottom: 0.9375rem;
}

.post-body ul,
.post-body ol {
    margin-left: 1.875rem;
    margin-bottom: 1.25rem;
}

.post-body li {
    margin-bottom: 0.625rem;
}

.post-body blockquote {
    border-left: 4px solid #016ab5;
    padding-left: 1.25rem;
    margin: 1.875rem 0;
    font-style: italic;
    color: #707070;
}


/* Empty Blog Card Styles */
.blog-card-empty {
    background: linear-gradient(135deg, rgba(1, 106, 181, 0.05) 0%, rgba(1, 106, 181, 0.02) 100%);
    border: 2px dashed rgba(1, 106, 181, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    transition: all 0.3s ease;
}

.blog-card-empty:hover {
    border-color: rgba(1, 106, 181, 0.4);
    background: linear-gradient(135deg, rgba(1, 106, 181, 0.08) 0%, rgba(1, 106, 181, 0.04) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(1, 106, 181, 0.1);
}

.empty-blog-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 280px;
}

.empty-blog-icon {
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-blog-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-016ab5);
    margin-bottom: 12px;
}

.empty-blog-text {
    font-size: 14px;
    color: var(--color-707070);
    line-height: 1.5;
}

/* Responsive adjustments for empty cards */
@media (max-width: 768px) {
    .blog-card-empty {
        min-height: 350px;
    }

    .empty-blog-content {
        padding: 30px 15px;
    }

    .empty-blog-icon svg {
        width: 40px;
        height: 40px;
    }

    .empty-blog-title {
        font-size: 16px;
    }

    .empty-blog-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-card-empty {
        min-height: 300px;
    }

    .empty-blog-content {
        padding: 25px 15px;
    }

    .empty-blog-icon svg {
        width: 36px;
        height: 36px;
    }

    .empty-blog-title {
        font-size: 15px;
    }

    .empty-blog-text {
        font-size: 12px;
    }
}

/* Footer Custom Styles */
.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 95% 90%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.footer-diamond-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.08) 25px,
            rgba(255, 255, 255, 0.08) 27px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.08) 25px,
            rgba(255, 255, 255, 0.08) 27px);
    pointer-events: none;
    z-index: 0;
}

.footer-logo-bg-svg {
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-logo-icon {
    filter: brightness(0) invert(1);
}

.footer-nav-link {
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

/* Remove extra space under footer */
body {
    margin: 0;
    padding: 0;
}

/* Responsive adjustments for blogs */
@media (max-width: 1024px) {
    .blogs-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-card-large .blog-image {
        height: 250px;
    }
}

@media (max-width: 480px) {

    .blog-card-small .blog-author,
    .blog-card-small .blog-date {
        font-size: 11px;
    }

    .blog-read-more {
        font-size: 11px;
        padding: 6px 15px;
    }
}

/* AOS Custom Adjustments */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Better performance for AOS animations */
.aos-init:not(.aos-animate) {
    opacity: 0;
}

/* Fix for mobile AOS animations */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Contact Form Styles */
.error-message {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom styles for SweetAlert toast */
.swal2-toast {
    border-radius: 0.5rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Hero Section Mobile See More Button */
@media (max-width: 767px) {
    .hero {
        padding-bottom: 5px !important;
        /* Add extra padding for mobile button */
        position: relative;
    }

    .hero-content {
        margin-bottom: 60px;
        /* Space for the button */
    }

    .hero-see-more-mobile-container {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 100%;
    }

    .hero-see-more-mobile {
        /* background-color: rgba(255, 255, 255, 0.9); */
        border-radius: 8px;
        padding: 12px 24px;
        /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
        z-index: 10;
    }

    /* Ensure the desktop button is hidden on mobile */
    .hero-see-more-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) {

    /* Hide mobile button on desktop */
    .hero-see-more-mobile-container {
        display: none !important;
    }

    /* Show desktop button */
    .hero-see-more-desktop {
        display: inline-flex !important;
    }
}

/* Ensure proper positioning for the mobile button */
.hero-see-more-mobile-container {
    pointer-events: none;
}

.hero-see-more-mobile {
    pointer-events: auto;
}
