* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

/* --------------------------Section One styles -------------------------- */
.section-one {
    position: relative;
    min-height: 100vh; 
    overflow: hidden;
    margin-top: -90px; 

    display: flex;
    align-items: center;
    color: white;
    
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}
.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0; 
}


.section-one .content {
    margin-left: 10%;
    position: relative;
    z-index: 2; 
    max-width: 600px;
}

.section-one .content h1 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 49px;
    line-height: 60px;
    
}

.section-one .content p {
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    text-align: left;
    margin-top: 20px;
}

.navigation-buttons{
    display: flex;
    gap: 20px;
    color:white;
    align-items: center;
}

.navigation-buttons .OurProductsDiv{
    display: flex;
   
    border: 4px solid #FFFFFF;
    border-radius: 61px;
    background-color: #32A3E5;
    color:white;
    
}

.navigation-buttons .OurProductsDiv button{
    background-color: #32A3E5;
    border-radius: 61px;
    border: none;
    color:white;
    padding: 4px 8px;
    
}
.arrowcircle{
    border-radius: 50%;
    background-color: white;
    margin: 8px;
    display: flex;
    align-items: center;
}

.arrowcircle img{
    width: 24px;
    padding: 3px;
}

.navigation-buttons .DiscoverMoreDiv{
    display: flex;
        align-items: center;
        gap: 6px;
}

.navigation-buttons .DiscoverMoreDiv button{
font-family: Poppins;
font-weight: 500;
line-height: 100%;
text-align: center;
border: none;
background-color: transparent;
color: white;
}

.navigation-buttons .DiscoverMoreDiv img{
    width: 15px;
}
/*--------------- Section Two styles---------------- */
.section-two {
    background-color: #ffffff;
   
    position: relative;
    z-index: 1;
   
}


.vertical-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    padding: 40px 0;
}

.carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.carousel-item {
    padding: 0 20px;
    transition: all 0.5s ease;
    opacity: 0.5;
}

.carousel-item p {
    color: #254B72;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.2;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-item.active p {
    
    font-weight: 500;
   
}

/* Animation for text transition */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

body.dark-mode .nav-link {
    color: #e0e0e0;  
}
/* ----------------section3 styles--------------- */

.Section-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    padding: 50px 0;
    width: 100%;
    margin-top: 50px;
    
}

.Section-three-map {
    display: flex;
    justify-content: center;
    width: 80%;
    margin-bottom: 40px;
}

.Section-three-map img {
    max-width: 45%;
    height: auto;
}

.section3-description {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 30px;
    margin-top: 35px;

}

.description-item-header{
    display: flex;
    align-items: center;
    
    

}

.description-item-header .images-container{
    display: flex;
}

.description-item-header img{
    width: 70px;
    height: 70px;
}

.description-item-header h3{
    font-family: Poppins;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;

    color: #254B72;
}

.description-item p{
    color: #254B72;
    padding-left: 80px;
    text-align: justify;
    width: 90%;
}
.logo-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-block;
    cursor: pointer;
}

.gear-icon, .d-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.d-icon {
    z-index: 1; 
}

.gear-icon {
    transition: transform 1.2s ease-in-out;
    transform-origin: center;
}

.logo-container:hover .gear-icon {
    animation: rotateGear 1s ease-in-out;
}

@keyframes rotateGear {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* -----------section4 styles------- */

.section-four {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-heading {
    color: #254B72;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #254B72;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;

}

.form-control {
    padding: 12px 15px;
    border: 1px solid #C6C9CE;
    border-radius: 6px;
    font-size: 14px;
    color: #8987A1;
    width: 100%;
    font-weight: 400px;
}

.form-control::placeholder {
    color: #AFAFAF;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.half-width {
    width: 50%;
}

/* Phone input styling */
.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #C6C9CE;
    border-radius: 6px;
    overflow: hidden;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #F8F8F8;
    border: 1px solid #C6C9CE;
    height: 44px;
    gap: 8px;
}

.flag {
    width: 24px;
    height: 16px;
    display: flex;
    align-items: center;
}

.flag img {
    width: 100%;
    height: auto;
}

.phone-number-styles{
    width: 100% !important;
    padding: 12px 15px;
    border: 1px solid #C6C9CE;
    border-radius: 6px;
    font-size: 14px;
    color: #8987A1;
    width: 100%;
}

/* Select styling */
.select-container {
    position: relative;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.dropdown-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 12px;
    height: 12px;
}
.select-container option{
    padding: 0px !important;
}
/* File upload styling */


.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.file-upload-container {
    width: 100%;
}

.file-upload-box {
    border: 1px dashed #AFAFAF;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-box.active {
    border-color: #4a90e2;
    background-color: rgba(74, 144, 226, 0.05);
}

#uploadPrompt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.file-upload-box p {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.file-type-hint {
    font-size: 12px;
    color: #AFAFAF;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


#selectedFilesPreview {
    width: 100%;
}

.file-preview {
    display: flex;
    align-items: center;
    text-align: left;
}

.file-preview-image {
    max-width: 100px;
    max-height: 80px;
    margin-right: 15px;
    border-radius: 4px;
}

.file-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pdf-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23e74c3c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>');
}

.word-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232b5797" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>');
}

.excel-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23217346" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>');
}

.image-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%233498db" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21 15 16 10 5 21"/></svg>');
}

.generic-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23888888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"/><polyline points="13 2 13 9 20 9"/></svg>');
}

.file-info {
    flex-grow: 1;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    word-break: break-all;
}

.file-size {
    font-size: 12px;
    color: #888;
}

.remove-file-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    margin-top: 10px;
}

.remove-file-btn:hover {
    background-color: #e9e9e9;
}

/* Multiple files styling */
.multiple-files {
    width: 100%;
    text-align: left;
}

.files-count {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.files-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px;
}

.files-list li {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    border-bottom: 1px solid #f5f5f5;
}

.files-list li:last-child {
    border-bottom: none;
}

/* Submit button */
.submit-btn {
    background-color: #336D94;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #336D94;
}


.form-control:focus ,
.phone-number-styles:focus{
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #C6C9CE !important;
  }

  

  .phone-field:focus{
    border: none!important;
  }

  


/* wheel section styles */

.section-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.wheel-container {
    position: absolute;
    left: -143px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.wheel {
position: relative;
width: 100%;
height: 100%;
transition: transform 1s ease;
background-image: url('../images/gear2.png'); 
background-size: contain;
background-repeat: no-repeat;
background-position: center;

}
.edge {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a5276;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.edge.active {
    width: 120px;
    height: 120px;
    z-index: 10;
    
    

}

.edge-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

.active .edge-icon {
    width: 60px;
    height: 60px;
}

.center-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 30px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: left;
    font-weight:600 ;
}

.center-content.active {
    opacity: 1;
}

.center-content h3 {
    color: #254B72;
    margin-bottom: 20px;
    font-size: 32px;
    font-family: Poppins;
font-weight: 600;

line-height: 100%;



}

.center-content p {
    color: #254B72;
    line-height: 1.6;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 100%;


}

.why-darbco {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.why-darbco h3 {
    color: #254B72;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
}

.benefits-section {
    position: absolute;
    right: 50px;
    top: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.benefit-btn {
    background-color: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    text-align: center;
    min-width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-btn:hover {
    background-color: #1a5276;
    color: white;
}

.tagline {
    
    bottom: 0px;
    width: 70%;
    text-align: center;
    color: #336D94;
    font-weight: 600;
    margin-bottom: 40px;
    
}

.benefit-btn.active {
    background-color: #1a5276;
    color: white;
  }



  @media (max-width: 1024px) {
    .section-container {
        flex-direction: column;
        align-items: center;
        padding-top: 80px; 
    }
    
    .wheel-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 300px; 
        height: 300px;
        margin: 30px auto;
    }
    
    .center-content {
        position: relative;
        order: -1; 
        left: 0;
        top: 0;
        transform: none;
        width: 90%;
        max-width: 500px;
        text-align: center;
        margin-bottom: 20px;
        height: 200px;
    }
    
    .center-content.active {
        opacity: 1;
    }
    
    .why-darbco {
        position: absolute;
        left: 50%;
        top: 65%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 150px;
    }
    
    .benefits-section {
        position: relative;
        right: 0;
        top: 0;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }
    
  
    .edge {
        width: 30px;
        height: 30px;
        
    }
    
    .edge.active {
        width: 90px;
        height: 90px;
       
    }
    
    .edge-icon {
        width: 20px;
        height: 20px;
    }
    
    .active .edge-icon {
        width: 45px;
        height: 45px;
    }
    
}

@media screen and (max-width: 600px) {
    .wheel-container {
        width: 250px;
        height: 250px;
    }
    
    .why-darbco {
        width: 120px;
        height: 120px;
    }
    
    .why-darbco h3 {
        font-size: 18px;
    }
    
    .benefits-section {
        flex-wrap: wrap;
    }
    
    .benefit-btn {
        padding: 8px 15px;
        min-width: 100px;
        font-size: 14px;
    }
    
    .edge {
        width: 25px;
        height: 25px;
    }
    
    .edge.active {
        width: 70px;
        height: 70px;
    }
    
    .edge-icon {
        width: 15px;
        height: 15px;
    }
    
    .active .edge-icon {
        width: 35px;
        height: 35px;
    }
}
/* -------------Dark Mode Styles---------------- */

body.dark-mode {
    background-color: #010A16;  }




/* Section Backgrounds */
body.dark-mode .section-two {
    background-color: #01101C; 
}

body.dark-mode .section-container,
body.dark-mode .Section-three,
body.dark-mode .section-four,
body.dark-mode .footer {
    background-color: #010A16;  
}


body.dark-mode .carousel-item p {
    color: white;  
}

body.dark-mode .tagline{
    color:white;
}

body.dark-mode .why-darbco {
    background-color: transparent;
   
}

body.dark-mode .description-item p{
    color: white;
}

body.dark-mode .form-control {
    background-color: transparent;
    color: white !important;
}

body.dark-mode .form-group label{
    color: #FFFFFFC7;
}


body.dark-mode select.form-control {
    background-color: #010A16!important;
}


body.dark-mode input::placeholder {
    color: #FFFFFFC7;  
}




body.dark-mode .phone-number-styles{
    background-color: transparent;
}




/* ------------Responsive styles-------------------- */

@media (max-width: 991px){
    .section-one .content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin: 0px 48px;
    font-size: 20px;
    }
    .Section-three-map{
        width: 100%;
    }
    .section-one{
        min-height: 101vh;
        justify-content:center ;
    }

    .section-one .content h1{
        font-size: 44px;
    line-height: 40px;
    text-align: center;
    } 

    .section-one .content p {
        font-size: 15px;
        line-height: 20px;
        text-align: center;
    }

    .arrowcircle img{
        width: 16px;
    }

    .navigation-buttons .OurProductsDiv button{
        font-size: 10px;
    }

    .navigation-buttons .DiscoverMoreDiv {
        font-size: 16px;
    }
    .navigation-buttons .DiscoverMoreDiv img {
        width: 13px;
    }
    .navbar-brand img {
        height: 30px;
    }

    .logo-container{
        height: 50px;
    }

    .carousel-item p{
        max-width: 450px;
        font-size: 12px;
    }

    .tagline {
        font-size: 19px;

    }

    .description-item-header h3{
        font-size: 20px;

    }

    .description-item-header img {
        width: 50px;
        height: 40px;
    }

    .description-item p {
        font-size: 13px;
        text-align: left;
    }

    .contact-container{
        max-width: 400px;
    }

    .footer{
        padding: 0px;
    }
}

@media (max-width: 425px){

    .section-one .content h1{
        font-size: 28px;
    }

    .center-content {
        margin-bottom: 70px;
    }
}

/* Custom dropdown styling */
.custom-dropdown {
    position: relative;
    width: 100%;
  }
  
  .custom-dropdown-selected {
    padding: 12px 15px;
    border: 1px solid #C6C9CE;
    border-radius: 6px;
    font-size: 14px;
    color: #8987A1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
  }
  
  body.dark-mode .custom-dropdown-selected {
    background-color: #010A16;
    color: white;
  }
  
  .custom-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; /* Same width as the select */
    max-height: 300px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 1px solid #C6C9CE;
    border-radius: 0 0 6px 6px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  body.dark-mode .custom-dropdown-list {
    background-color: #010A16;
    color: white;
  }

  .outline-dark{
    border:1px solid #111212 !important;
    background-color: white;
  }

  body.dark-mode  .iti__country-list{
    background-color: #010A16;
    color: white;
  }
  
  .custom-dropdown-option {
    padding: 10px 15px;
    cursor: pointer;
  }
  
  .custom-dropdown-option:hover {
    background-color: #f5f5f5;
  }
  
  body.dark-mode .custom-dropdown-option:hover {
    background-color: #01101C;
  }

  body.dark-mode .center-content h3{
    color: white;
  }

  body.dark-mode .center-content p{
    color: white;
    opacity: 0.7;
  }
  
 
  .select-container select {
    display: none;
  }


 