        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f8f9fa;
            color: #5a6662;
        }

        .navbar {
            background-color: #fff;
            padding: 1rem 2rem;
        }

        .navbar-brand {
            color: #5a6662;
            font-size: 1.7rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .nav-link {
            color: #5a6662;
            margin: 0 8px;
            font-weight: bold;
            position: relative;
        }

        .nav-link.active,
        .nav-link:hover {
            color: #f18c5d;
        }

        .nav-link::after {
            content: '-';
            color: #f18c5d;
            margin-left: 8px;
            font-weight: bold;
        }

        .social-icons a {
            color: #5a6662;
            border-radius: 3px;
            padding: 6px;
            margin-left: 5px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            font-size: 1.3rem;
        }

        .social-icons a:hover {
            color: #f18c5d;
        }

        /* hero section */

        /* .hero-section {
                          background: url("{{ asset('assets/image/home-img.jpeg') }}") no-repeat center center/cover;
                          height: 100vh;
                          color: #fff;
                          position: relative;
                      } */


        @media (max-width:768px) {

            .hero-section {
                min-height: 75vh;
            }

            .hero-content {
                padding-top: 0;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 0.95rem;
            }
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* .overlay {
                        background: linear-gradient(90deg,
                                rgba(0, 0, 0, 0.65) 0%,
                                rgba(0, 0, 0, 0.35) 40%,
                                rgba(0, 0, 0, 0.1) 100%);
                    } */

        .hero-content {
            position: relative;
            z-index: 2;
            /* padding-top: 150px; */
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(50px);
            animation: bottomUp 1s ease-out forwards;

        }

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

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #eee;

            /* Animation styles added */
            opacity: 0;
            transform: translateY(-50px);
            animation: slideDown 1s forwards ease-out;
        }

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

        .btn-primary-custom {
            background-color: #f18c5d;
            border: none;
            padding: 10px 30px;
            font-weight: 500;
            font-size: 1rem;
            color: #fff;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
        }

        /* Animation */
        .animate-left {
            opacity: 0;
            position: relative;
            animation: slideIn 2s forwards;
        }

        @keyframes slideIn {
            from {
                left: -100px;
                opacity: 0;
            }

            to {
                left: 0;
                opacity: 1;
            }
        }

        .btn-outline-custom {
            color: #fff;
            border: 2px solid #fff;
            padding: 10px 30px;
            font-weight: 500;
            font-size: 1rem;
            margin-left: 10px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            background-color: transparent;
            transition: background-color 0.3s, color 0.3s;

        }

        .animate-right {
            opacity: 0;
            position: relative;
            animation: slideInRight 2s forwards;
        }

        @keyframes slideInRight {
            from {
                right: -100px;
                opacity: 0;
            }

            to {
                right: 0;
                opacity: 1;
            }
        }




        /* scroll section*/
        .scroll-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #5a6662;
        }

        .scroll-subtitle {
            font-size: 1.5rem;
            color: #5a6662;
            max-width: 700px;
            margin: 0 auto;
        }


        .scroll-wrapper {
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            padding: 20px 0;
        }

        .scroll-content {
            display: inline-block;
            white-space: nowrap;
        }

        .scroll-content img {
            height: 250px;
            margin-right: 30px;
            border-radius: 12px;
            object-fit: cover;
            vertical-align: middle;
            opacity: 0.9;
            transition: transform 0.5s ease;
        }

        .scroll-content img:hover {
            transform: scale(1.03);
            opacity: 0.8;
        }

        .scroll-content.medium-speed {
            animation: scroll-medium 25s linear infinite;
        }

        .scroll-content.slow-speed {
            animation: scroll-slow-reverse 30s linear infinite;
        }

        @keyframes scroll-medium {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scroll-slow-reverse {
            0% {
                transform: translateX(-50%);
            }

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

        /* Responsive */
        @media (max-width: 768px) {
            .scroll-content img {
                height: 180px;
                margin-right: 15px;
            }

            .giant-scroll-text {
                font-size: 12vw;
            }
        }


        /* new section*/
        .about-section .background-text {
            font-size: 2rem;
            color: #5a6662;
            top: 10%;
            left: 51%;
            font-weight: 600;
        }

        .about-section {
            background-color: #f8f6f3;
            position: relative;
            overflow: hidden;
        }

        .heading {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #5a6662;
        }

        .description {
            font-size: 1.1rem;
            color: #5a6662;
            line-height: 1.7;
        }

        .read-more {
            margin-top: 20px;
            font-weight: 600;
            display: inline-block;
            color: #000;
            text-decoration: none;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        .image-box img {
            width: 80%;
            height: auto;
            border-radius: 0;
        }

        @media (max-width: 768px) {
            .image-box img {
                width: 100%;
                margin-bottom: 30px;
            }
        }

        /* Capabilities Section */
        .capabilities-section {
            background-color: #5a6662;
            color: #fff;
            padding: 120px 20px;
        }

        .capability-heading {
            font-weight: bold;
            color: #fff;
        }

        .capability-subheading {
            color: #ef8354;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .capability-desc {
            color: #cfcfcf;
            font-size: 15px;
            margin-bottom: 30px;
        }

        .capability-list {
            list-style: none;
            padding: 0;
            font-size: 1rem;
            color: #ffffff;
        }

        .capability-list li {
            margin-bottom: 10px;
        }


        .capabilities-img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .custom-btn {
            background-color: #E59874;
            border-color: #E59874;
        }

        .custom-btn:hover {
            background-color: #cf7e5b;
            border-color: #cf7e5b;
        }

        @media (max-width: 768px) {
            .capabilities-section {
                padding: 60px 15px;
            }
        }

        /* Footer */
        .footer {
            background-color: #5a6662;
            padding: 60px 0 20px;
            color: #fff;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer .newsletter-input {
            background-color: #fff;
            color: #000;
            border: none;
            padding: 10px 15px;
            width: 100%;
            margin-bottom: 10px;
        }

        .footer .signup-btn {
            background-color: transparent;
            border: 2px solid #e59874;
            color: #e59874;
            width: 100%;
            padding: 8px;
            font-weight: 500;
        }

        .footer .signup-btn:hover {
            background-color: #e59874;
            color: #1f2521;
        }

        .footer .social-icons a {
            color: #fff;
            background-color: #333;
            padding: 8px 10px;
            border-radius: 3px;
            margin: 0 3px;
            display: inline-block;
        }

        .footer .social-icons a:hover {
            background-color: #e59874;
            color: #1f2521;
        }

        .footer .copyright {
            border-top: 1px solid #333;
            margin-top: 30px;
            padding-top: 20px;
            font-size: 14px;
            color: #ccc;
        }
