        /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #049fd9;
        }
        
        /* Navigation */
        /* .navbar {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
            height: 70px;
        }
        
        .logo img {
            height: 40px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            padding: 0 15px;
            position: relative;
        }
        
        .nav-menu a {
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #049fd9;
        } */
        
        .search-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 20px;
        }
        
        /* Hero Carousel Section */
        .hero-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 500px;
        }
        
        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            color: white;
            text-align: start;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 20px;
        }
        
        .slide1 {
            background-image: linear-gradient(rgba(0,0,0,0.0), rgba(255, 255, 255, 0.2)), url('./../img/cisco/cisco-001.webp');
            background-size: cover;
            background-position: center;
        }
        
        .slide2 {
            background-image: linear-gradient(rgba(0,0,0,0.0), rgba(255, 255, 255, 0.2)), url('./../img/cisco/cisco-002.webp');
            background-size: cover;
            background-position: center;
        }
        
        .slide3 {
            background-image: linear-gradient(rgba(0,0,0,0.0), rgba(255, 255, 255, 0.2)), url('./../img/cisco/cisco-003.webp');
            background-size: cover;
            background-position: center;
        }
        
        .carousel-content {
            max-width: 800px;
            margin: 0 auto;
            z-index: 2;
        }
        
        .carousel-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .carousel-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .carousel-btns a {
            display: inline-block;
            padding: 12px 30px;
            margin: 0 10px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .carousel-dot.active {
            background-color: white;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }
        
        .carousel-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .btn-primary {
            background-color: #049fd9;
            color: white;
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #0383b3;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Features Section */
        .features {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card-gray {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card-gray:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        
        .feature-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .feature-img {
            height: 200px;
            overflow: hidden;
        }
        
        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .feature-card:hover .feature-img img {
            transform: scale(1.05);
        }
        
        .feature-content {
            padding: 20px;
        }
        
        .feature-content h3 {
            margin-bottom: 10px;
            color: #049fd9;
        }
        
        .feature-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .read-more {
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more span {
            margin-left: 5px;
            transition: margin 0.3s;
        }
        
        .read-more:hover span {
            margin-left: 10px;
        }
        
        /* Solutions Section */
        .solutions {
            background-color: #fff;
            padding: 60px 20px;
        }
        
        .solutions-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .solution-item {
            background-color: #f5f5f5;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .solution-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .solution-icon {
            font-size: 2.5rem;
            color: #049fd9;
            margin-bottom: 20px;
        }
        
        .solution-item h3 {
            margin-bottom: 15px;
            color: #333;
        }
        
        .solution-item p {
            color: #666;
            line-height: 1.5;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(120deg, #0066ff, #39f2ff);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #5290ec;
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
            font-size: 18px;
        }

        .cta-button:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
        }
        
        /* Footer */
        /* footer {
            background-color: #222;
            color: #ddd;
            padding: 60px 20px 30px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #049fd9;
        }
        
        .bottom-footer {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        } */
        
        /* Social Icons */
        /* .social-icons {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #333;
            color: white;
            margin: 0 5px;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #049fd9;
        } */
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-content h1 {
                font-size: 1.8rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
            
            .carousel-btns a {
                padding: 10px 20px;
                margin-bottom: 10px;
                display: block;
                width: 200px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
            
            .nav-menu {
                display: none;
            }
        }