:root {
    --primary-color: #ee0000;
    --white: #fff;
    --dark: #333;
    --light-gray: #f8f9fa;
    --very-dark: #000;

}

body {
    font-family: "Ubuntu", sans-serif;
    overflow-x: hidden;
    font-size: 15px;
    font-weight: 400;
}

p {
    font-size: 16px;
    font-weight: 100;
}

/* Header Styles */
.header {
    background-color: var(--very-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo {
    height: 50px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 0px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #c50000;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 0px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 24px;
    color: var(--dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--very-dark);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: left 0.3s;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    padding: 100px 0;

    background: linear-gradient(135deg, #0c0c0c 0%, #262627 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 0px 0;
    background-color: var(--primary-color);
    color: var(--white)
}

.about-img {

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    object-fit: cover;
}

/*******************************************************about video**********************/

/* Video container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

/* Video styling */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Black overlay */
.video-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% transparent black */
}

/* Content over the video */
.video-container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2; /* Ensure it appears above overlay */
}

.video-container .content h1 {
    font-size: 3rem;
}

.video-container .content p {
    font-size: 1.5rem;
}



/*******************************************************about video**********************/








.section-title {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.second-lead {
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 2rem;
}

.feature-box {
    padding: 20px;
    margin-bottom: 2px;
    border-radius: 5px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.service-card {
    height: 550px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/****************for swiper slider******************/

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, #ee0000);
}

/* .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 18px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 0%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
} */
/*********************************************/






.service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;

}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.custom-arrow {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Projects Section */
.projects {
    padding: 80px 0;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    margin: 15px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    position: relative;
}

.project-img {
    width: 100%;
    height: 365px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    background: white;
}

/* Help Section */
.help {
    padding: 80px 0;
    background-color: var(--very-dark);
    color: var(--white);
}

.help-box {
    padding: 30px;
    background: var(--very-dark);
     border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s;
}

.help-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.help-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: 150px;
}

.contact-img-container {
    position: relative;
    height: 100%;
}

.contact-img {
    width: 78%;
    height: auto;
    border-radius: 10px;
    position: absolute;
    z-index: 1;
    bottom: -80px;
    right: 20px;
}

.contact-img-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: var(--primary-color);
    opacity: 0.1;
    bottom: -20px;
    right: -20px;
    border-radius: 10px;
    z-index: 0;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-link {
    color: #bbb;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    color: #bbb;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255 255 255 / 75%) !important;
}

a {
    color: #dc3545;
    text-decoration: underline;
}

/*****************************************for footer*********************************/

.bottom-menu-for-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.bottom-menu-box {
    flex: 1;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-menu-box:hover {
    background-color: #f8f9fa;
}

.bottom-menu-box .flaticon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bottom-icon-text {
    font-size: 12px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.justify-between {
    justify-content: space-between !important;
}

.alien-item-center {
    align-items: center !important;
}

/******************************************about page css***************************/

                /* Hero Section */
                .about-hero {
                    background-color: #f8f9fa;
                    padding: 80px 0;
                    margin-bottom: 60px;
                }
        
                /* Content Section */
                .about-content {
                    padding: 60px 0;
                }
        
                .about-text {
                    padding-right: 40px;
                }
        
                .about-image {
                    border-radius: 8px;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    overflow: hidden;
                }
        
                .about-image img {
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                }
        
                /* Values Section */
                .values-section {
                    background-color: #f8f9fa;
                    padding: 60px 0;
                    margin: 60px 0;
                }

                /* Team Section */
                                .team-section {
                                    padding: 60px 0;
                                }
              .last-cta-seciton{
                background: var(--primary-color);
                color: var(--white);
              }
/*****************************************about page css******************/

/******************************************our services css******************/

 /* Hero Section */
 .about-hero,
 .services-hero {
     padding: 80px 0;
     margin-bottom: 60px;
 }

 .services-hero {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ecommerce-bg.jpg');
     background-size: cover;
     background-position: center;
     color: white;
     text-align: center;
 }

 /* Content Section */
 .about-content,
 .services-content {
     padding: 60px 0;
 }

 .about-text {
     padding-right: 40px;
 }

 .about-image,
 .service-card {
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     overflow: hidden;
 }

 .about-image img {
     width: 100%;
     height: auto;
     object-fit: cover;
 }

 /* Values Section */
 .values-section,
 .tech-stack {
     background-color: #f8f9fa;
     padding: 60px 0;
     margin: 60px 0;
 }

 /* Team Section */
 .team-section {
     padding: 60px 0;
 }

 /* ======= Services Page Specific Styles ======= */
 /* Service Cards */
 .service-card {
     border: none;
     transition: transform 0.3s, box-shadow 0.3s;
     margin-bottom: 30px;
     height: 100%;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .service-icon {
     font-size: 2.5rem;
     color: #0d6efd;
     margin-bottom: 20px;
 }

 /* Technology Stack */
 .tech-logo {
    height: 120px;
    width: auto;
    margin: 2px;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: all 0.3s;
}

 .tech-logo:hover {
     filter: grayscale(0%);
     opacity: 1;
 }

 /* Process Section */
 .process-step {
     position: relative;
     padding-left: 90px;
     margin-bottom: 40px;
 }

 .process-number {
     position: absolute;
     left: 0;
     top: 0;
     font-size: 3rem;
     font-weight: bold;
     color: #6e0e0e54;
 }

 /* CTA Section */
 .cta-section {
     background-color: var(--primary-color);
     color: white;
     padding: 80px 0;
     text-align: center;
 }


/*********************************************our services css************************/

/**************************************************contact us****************************** */

.contact-card-heading {
     font-size: 1.2rem;
     font-weight: 500;
     color: #000000;
 }

 .contact-detail{
        font-size: 1.2rem;
        font-weight: 500;
    }
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

/* Address Styling */
address {
    font-style: normal;
    line-height: 1.6;
}

/* Accordion Customization */
.accordion-item {
    border: 0;
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .header-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-img {
        margin: 30px 0;
    }

    .contact-img-container {
        margin-top: 40px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    /**********************************for about us ****************************/
          .about-text {
              padding-right: 0;
              margin-bottom: 40px;
          }
                /**********************************for services ****************************/

                 /* Hero Section */
    .about-hero, .services-hero {
        padding: 80px 0;
        margin-bottom: 60px;
    }
    
    .services-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ecommerce-bg.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
    }
    
    /* Content Section */
    .about-content, .services-content {
        padding: 60px 0;
    }
    
    .about-text {
        padding-right: 40px;
    }
    
    .about-image, .service-card {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Values Section */
    .values-section, .tech-stack {
        background-color: #f8f9fa;
        padding: 60px 0;
        margin: 60px 0;
    }
    
    /* Team Section */
    .team-section {
        padding: 60px 0;
    }
    
    /* ======= Services Page Specific Styles ======= */
    /* Service Cards */
    .service-card {
        border: none;
        transition: transform 0.3s, box-shadow 0.3s;
        margin-bottom: 30px;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: #0d6efd;
        margin-bottom: 20px;
    }
    
    /* Technology Stack */
    .tech-logo {
        height: 60px;
        width: auto;
        margin: 15px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
    }
    
    .tech-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    /* Process Section */
    .process-step {
        position: relative;
        padding-left: 90px;
        margin-bottom: 40px;
    }
    
    .process-number {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 3rem;
        font-weight: bold;
        color: rgba(13, 110, 253, 0.2);
    }
    
    /* CTA Section */
    .cta-section {
        background-color: #0d6efd;
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    /**************************************for services************************/

         .about-text {
             padding-right: 0;
             margin-bottom: 40px;
         }
    
         .services-hero {
             padding: 60px 0;
         }
    
         .process-step {
             padding-left: 70px;
         }
    
         .process-number {
             font-size: 2.5rem;
         }
/***************************************************************** contat us**************/
  

.contact-hero {
    padding: 60px 0;
}

.contact-card {
    margin-bottom: 30px;
}

.map-container {
    margin-top: 30px;
}


}

@media (max-width: 575.98px) {
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 5px;

    }


    .about-img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    .services {
        padding: 10px 0;
        background-color: var(--light-gray);
    }

    .project-img {

        height: 220px;

    }
    
    .video-container {
        position: relative;
        /* width: 121%; */
        height: 100vh;
        overflow: hidden;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .contact-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        position: relative;
        z-index: 1;
        bottom: -80px;
        right: 20px;
    }

}