/* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(35, 46, 60, 0.7), rgba(35, 46, 60, 0.7)), url('../img/home/home_hero.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .btn-primary {
            background-color: var(--deep-blue);
            border-color: var(--deep-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--sky-blue);
            border-color: var(--sky-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-light {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Padding */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--deep-blue);
            margin-top: 15px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Services Section */
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-title {
            /* Limit title to 2 lines with ellipsis */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2em; /* Fixed height for 2 lines */
            line-height: 1.4;
            margin-bottom: 0.4rem;
            font-size: 1.2rem;
        }
        
        .service-content {
            padding: 20px;
        }
        
        /* Portfolio Section */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(51, 111, 148, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        /* Blog Slider */
        .blog-slider {
            position: relative;
            padding: 0 40px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin: 20px 10px;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .blog-title {
            /* Limit title to 2 lines with ellipsis */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8em; /* Fixed height for 2 lines */
            line-height: 1.4;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }

        .blog-excerpt {
            /* Limit excerpt to 3 lines with ellipsis */
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
            min-height: 4.5em; /* Fixed height for 3 lines */
            margin-bottom: 1rem;
        }
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .btn-primary {
            background-color: var(--deep-blue);
            border-color: var(--deep-blue);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--sky-blue);
            border-color: var(--sky-blue);
            transform: translateY(-2px);
        }
        
        /* Glide.js Customizations */

        /* Ensure glide slides have consistent height */
        .glide__slide {
            height: auto;
        }


        .glide__arrows {
            position: absolute;
            top: -70px;
            right: 0;
        }
        
        .glide__arrow {
            background: var(--deep-blue);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .glide__arrow:hover {
            background: var(--sky-blue);
        }
        
        
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .blog-slider {
                padding: 0 15px;
            }
            
            .blog-card {
                width: 90% !important;
                margin: 20px auto;
            }
            
            .glide__arrows {
                position: relative;
                top: 0;
                display: flex;
                justify-content: flex-end;
                margin-top: 20px;
                margin-bottom: 10px;
                padding-right: 5%;
            }
            
            .glide__arrow {
                position: static;
                margin-left: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .blog-card {
                width: 92% !important;
            }
            
            .glide__arrows {
                padding-right: 4%;
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background-color: var(--dark-navy);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .glide__arrows {
                position: relative;
                top: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                height: 80vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn-primary, .btn-outline-light {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }