      
      
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root{
            --hovercolor:#f1970f;
            --mycolor:#db4b32;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #000000;
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            background-color: #1a1f2e;
            padding: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .img-logo{
            height:50px; 
            display:block;
            border-radius: 40vh 20vh 10vh  0;
        ;    
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 4px;
            position: relative;
        }

        .nav-link.active {
            color:var(--mycolor);
            background-color: rgba(224, 226, 235, 0.1);
        }
        .nav-link:hover{
            color:var(--hovercolor);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

       

        /* Footer */
        .footer {
            background-color:#F7FAFD;
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 10fr));
            gap: 100px 100px;
            margin: auto;
        }

        .footer-section h3 {
            color: var(--mycolor);
            margin-bottom: 15px;
            font-size: 1.1em;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section ul {
            line-height: 1.8;
            text-align: justify;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
            color: #555555;
        }

        .footer-section a {
            text-decoration: none;
            transition: color 0.3s ease;
            color: #333333;
        }
        .footer-section a:hover {
            color: var(--hovercolor);
            
        }

      
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            color: #130a0a;
        }

        .fab {
            padding: 8px;
            font-size: 20px;
            width: 40px;
            text-align: justify;
            
            }



        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a1f2e;
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                display: none;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
            }

            .nav-link {
                display: block;
                padding: 15px 20px;
                width: 100%;
                border-radius: 0;
                transition: all 0.3s ease;
            }

            .nav-link:hover {
                background-color: rgba(224, 226, 235, 0.1);
            }

            .hero h1 {
                font-size: 2.2em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .nav-container {
                flex-wrap: wrap;
            }

            .nav-menu {
                gap: 0;
            }

            .section-title {
                font-size: 2em;
            }

            .cta-section h2 {
                font-size: 1.8em;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 25px 20px;
            }

            .feature-icon {
                font-size: 2.5em;
            }

            .feature-card h3 {
                font-size: 1.2em;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .img-logo {
                height: 40px;
            }

            .nav-link {
                padding: 12px 15px;
                font-size: 0.95em;
            }

            .hero {
                padding: 60px 20px;
                min-height: 50vh;
            }

            .hero h1 {
                font-size: 1.8em;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 1em;
                margin-bottom: 20px;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 0.95em;
            }

            .section-title {
                font-size: 1.6em;
                margin-bottom: 30px;
            }

            .feature-card {
                padding: 20px 15px;
            }

            .feature-icon {
                font-size: 2.2em;
                margin-bottom: 10px;
            }

            .feature-card h3 {
                font-size: 1.1em;
            }

            .feature-card p {
                font-size: 0.95em;
            }

            .cta-section {
                padding: 50px 20px;
            }

            .cta-section h2 {
                font-size: 1.5em;
            }

            .cta-section p {
                font-size: 1em;
                margin-bottom: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            } 

            .footer-section h3 {
                font-size: 1em;
            }

            
        }

        /* Small tablets */
        @media (max-width: 600px) {
            .nav-menu {
                gap: 0;
            }

            .features {
                padding: 50px 20px;
            }

            .about-section {
                padding: 50px 20px;
            }

            .about-text {
                font-size: 1em;
            }
        }
  