  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #1a1a1a;
            color: white;
        }

      
       /* Hero section background */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-image: url('../images/home-background.png'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -2;
        }

        .hero-background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(36, 36, 36, 0.31);
            opacity: 0.99;
            z-index: -1;
        }

        
        .custom-container{
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
      
        /* Hero Section */
        .Home-section {
            min-height: 80vh;
            display: flex;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            z-index: 10;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 2.5rem;
            background: linear-gradient(267.03deg, #E7451E 4.01%, #E7451E 57.55%, #FBBFA3 114.97%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            color: #FFFFFF;
            margin-bottom: 2rem;
            line-height: 1.4; 
            letter-spacing: 1px;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #FFFFFF;
            padding-top: 10px;
            border-top: 1px solid;
            border-image-slice: 1;
            border-image-source: linear-gradient(267.03deg, #F6921E 4.01%, #F16522 57.55%, #F6921E 114.97%);
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 650px;
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #E74720;
            border-radius: 50px;
            width: 200px;
            height: 60px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .hero-button:hover {
            transform: translateY(-3px);
            background: rgba(231, 69, 32, 0.1);
        }

        .discover-btn {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .discover-btn:hover {
            color: white;
        }


        @media(max-width:500px){
            .custom-container{
                text-align: center;
            }
            .hero-title{
                font-size: 30px;
            }

            .hero-subtitle{
                font-size: 14px;
            }
            .hero-description{
                font-size: 12px;
            }

            .discover-btn{
                font-size: 12px;
            }
        }

    /*who are we */
    .About-Section{
        background-color: #262626;
        padding: 70px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

     .clients-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }

        .client img {
            height: 50px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .client img:hover {
            opacity: 1;
        }

        .who-are-we {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

    .section-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 2rem;
        color: white;
        padding: 10px 20px;
        border:2px solid #E74720;
        border-radius: 50px;
        width: 200px;
        text-align: center;
}



        .who-are-we p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

        .shadow1{
            position: absolute;
            left: 0px;
        }

        .shadow2{
            position: absolute;
            right: 0px;
            top: 8%;
        }

        @media(max-width:500px){
            .client img{
                height: 25px;
            }

            .section-title{
                font-size: 14px;
            }
            .shadow2 {
                top: 0px;
            }

            .shadow2 ,.shadow1{
                width: 200px;
            }

            .who-are-we p{
                font-size: 0.9rem;
            }
        }

        /* Services styles  */


        .services-section{
            padding: 70px 0px;

            background-color: #262626;
        }
        .services-title-container{
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        .services-title-container h1{
                background: linear-gradient(180deg, #F6F6F7 0%, #7E808F 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text; 
                color: transparent;
                font-weight: 800;
        }

        .services-title-container p{
            width: 35%;
            color: #EBEBEB;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .service-card {
            background: #262626;
            border: 1px solid #FFFFFF;
            border-radius: 4px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border: 1px solid #F16522;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }


        .service-content{
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .service-title{
            font-size: 18px;
        }
        

        .service-description {
            font-size: 14px;
            line-height: 1.6;
            color: #8F9BB7;
        }

        /* Core Values Section */
        .values-section {
             background-color: #262626;
             padding: 70px 0px;
             display: flex;
             flex-direction: column;
        
             justify-content: center;
        }


        .values-main-title{
             background: linear-gradient(180deg, #F6F6F7 0%, #7E808F 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text; 
                color: transparent;
                font-weight: 800;
                margin-bottom: 20px;
        }


        .values-subtitle {
            font-size: 0.7rem;
            color: #EBEBEB;
            max-width: 500px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: scale(1.05);
        }

        .value-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
             border: 1px solid #F16522;

        }

        
        .value-circle:hover {
            background:#F16522 !important;
            color: white !important;
            border-color: transparent !important;
        }



        @media (max-width: 768px) {
           
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2px;
            }
            
            .value-circle {
                width: 120px;
                height: 120px;
                padding: 10px;
                font-size: 0.9rem;
            }
            .services-title-container{
                flex-direction: column;
                text-align: center;

            }
            .services-title-container h1{
                margin-bottom: 10px;
            }
            .services-title-container p{
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }

            .service-content{
                text-align: center;
            }
        }




      /* subscribe section */

.subscribe-section{
    background-color: #262626;
    padding: 70px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0%;
    right: -9%;
    width:600px; /* increased size */
    height: 500px;
    background: radial-gradient(circle, 
        rgba(241, 101, 34, 0.15) 0%,   /* lighter */
        rgba(241, 101, 34, 0.07) 40%,  /* softer middle */
        rgba(241, 101, 34, 0.03) 70%,  /* more faded */
        transparent 100%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.subscribe-header{
        display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 85px;
}

.subscribe-section .container {
    z-index: 2;
}

.subscribe-section .background-svg{
    position: absolute;
    top: 10%;
    right: 0%;
    width: 350px;
    z-index: 3; 
}

.subscribe-title{
    font-weight: 800;
    margin-bottom: 20px;
}

.subscribe-title span {
    background: linear-gradient(180deg, #F6F6F7 0%, #7E808F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.subscribe-desc{
    color: #8F9BB7;
    font-size: 1rem;
    max-width: 500px;
}

.input-container{
    background-color: black;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin-top: 250px;
    position: relative;
    z-index: 2;
}

.input-image{
    width: 60%;
}

.input-content{
    width: 40%;
    display: flex;
    flex-direction: column;
}

.enter-your-email{
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.enter-your-email input, .enter-your-email .btn-get-started{
    background-color: transparent;
    color: rgb(255, 255, 255, 0.6);
    border: 1px solid #F16522;
    padding: 10px;
    font-size: 12px;
    border-radius: 24px;
}

.enter-your-email input{
    width: 60%;
}

.enter-your-email .btn-get-started{
    color: white;
}

input:focus{
    outline: none !important;
}

/* Responsive  */
@media(max-width:1000px){
      .input-image{
        width: 53%;
    }
}
@media (max-width: 768px) {

    .input-container{
        margin-top: 60px;
    }

    .subscribe-section .background-svg{
        display: none;
    }
    .subscribe-header{
        text-align: center;
        padding-left: 0px;
    }
    .subscribe-section::before {
        width: 400px;
        height: 400px;
        top: -10%;
        right: -25%;
    }

    .input-content h2{
        font-size: 16px;
    }
    .input-image{
        width: 40%;
    }
.enter-your-email{
    flex-direction: column;
    margin-top: 10px;
}
    .enter-your-email input{
        width: 100%;
    }

    .input-image  img{
        width: 300px;
    }
}

@media (max-width: 480px) {
    .subscribe-section::before {
        width: 300px;
        height: 300px;
        top: -5%;
        right: -30%;
    }

    .input-image img{
    width: 200px;
}

   .input-container{
    flex-direction: column;
    align-items: center;
    justify-content: center;

   } 
   .input-image{
    width: 100%;
   }

   .input-content{
    width: 100%;
    align-items: center;
    padding: 10px 0px
    
    ;
   }
}


.ticker{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
   
/* Ticker container and animation */
.customers-ticker-container {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px;
}

.customers-ticker {
    display: flex;
    position: relative;
    z-index: 2;
    width: fit-content;
}

.ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.customer-logo {
    width: 65px;
    height: auto;
    transition: transform 1s ease;
}

.ticker-item:hover .customer-logo {
    transform: scale(1.1);
}



@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes ticker-scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}





