body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

.option-button {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.option-button:hover {
    background-color: #0056b3;
}



/*h1*/
h1 {
    font-size: 45px; /* Increase font size */
    background-image: linear-gradient(to right, #FF6400,rgb(143, 143, 143) ); /* Gradient background */
    -webkit-background-clip: text; /* Clip text to background */
    -webkit-text-fill-color: transparent; /* Make text transparent */
}

/*top text underline code */
.underline-heading {
    position: relative;
    text-align: center;
}

.underline-heading::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 260px; /* Adjust the width of the underline */
    height: 2px; /* Adjust the thickness of the underline */
    background-color: #FF6400;
    ; /* Adjust the color of the underline */
}

/*top text underline code */
.option-card {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    background-color: #eaeaea; /* Change the hover color */
    transform: translateY(-5px);
}

.option-icon {
    font-size: 40px;
    margin-bottom: 10px;
}


.option-label {
    font-size: 16px;
}

/* Additional icon styles */
.additional-icon {
    color: #007bff; /* Change the color of the additional icon */
    margin-bottom: 5px; /* Adjust spacing if needed */
    font-size: 24px; /* Adjust size if needed */
}


/* lanidng pages option css start */


#landingPageOptions,
#businessWebsiteOptions,
#ecomerceWebsiteOptions {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#landingPageOptions h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-check-label {
    margin-right: 20px;
}

button {
    background-color: #FF6400;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;

}
.containerbutton{
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    height: 100vh; /* Adjust as needed */
}

button:hover {
    background-color: #FF6400;
}


p {
    margin-top: 20px;
    font-size: 18px;
}

/*radio button styling */


/* Hide the default radio button */
.form-check-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #FF6400; /* Border color */
    border-radius: 50%; /* Make it round */
    outline: none;
    cursor: pointer;
}

/* Add custom styles for the checked state */
.form-check-input[type="radio"]:checked {
    background-color: #FF6400; /* Background color when checked */
}

/* Add custom styles for the label */
.form-check-label {
    position: relative;
    padding-left: 30px; /* Add space for the custom radio button */
}

/* Add custom styles for the label's before pseudo-element */
.form-check-label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #FF6400; /* Border color */
}

/* Add custom styles for the label's before pseudo-element in the checked state */
.form-check-input[type="radio"]:checked + .form-check-label:before {
    background-color: #FF6400; /* Background color when checked */
}
/*h3 styling*/
h2{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 26px; /* Adjust the font size */
    color: #333; /* Adjust the text color */
    margin-bottom: 20px; /* Adjust the bottom margin */
    text-align: center; /* Center the text */
    /* Add any other styles you want */
}
h3 {
   font-family: 'Times New Roman', Times, serif;
    font-size: 24px; /* Adjust the font size */
    color: #333; /* Adjust the text color */
    margin-bottom: 20px; /* Adjust the bottom margin */
    text-align: center; /* Center the text */
    /* Add any other styles you want */
}



/**/
.form-group {
    border: 1px solid #ccc; /* Add border to form-group */
    padding: 10px; /* Add padding for spacing */
    padding-top: 15px;
    border-radius: 8px; /* Add border radius for rounded corners */
    margin-bottom: 10px; /* Add margin at the bottom for spacing */
}



.form-check-inline {
    margin-right: 10px; /* Add margin between radio buttons */
}

.form-check {
    margin-bottom: 0px; /* Add margin at the bottom of each radio button group */
}



h5{
                           
                        
    position: relative; /* Ensure the h5 element is positioned */
    z-index: 1;
    border: 1px dashed #999;
    border-radius: 12px;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 0 -12px -3px;
    width: 50px;
    background-color: #F7F7F7;
    color: black;
   
}

        /* Style the alert container */
.alert {
    padding: 20px;
    background-color: #f44336; /* Red background */
    color: white; /* White text */
    border-radius: 5px;
    text-align: center; /* Center text */
    position: fixed; /* Fixed position */
    bottom: 30px; /* Position it at the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Add shadow */
}

/* Style the close button */
.closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Hover effect for the close button */
.closebtn:hover {
    color: black;
}

.required-field::placeholder {
    color: red;
}







.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #000;
}

.logo-footer {
    width: 250px;
}

.contact {
    display: flex;
    align-items: center;
}

.contact .phone,
.contact .portfolio {
    display: flex;
    align-items: center;
    margin-right: 20px;
}


.contact .phone i,
.contact .portfolio i {
    margin-right: 15px;
   
}

.contact .phone span,
.contact .portfolio span {
    margin-left: 10px; /* Add space between icon and phone number */
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 25.2px;
    color:#fff;
}

svg.svg-inline--fa.fa-rocket.fa-w-16 { 
    /* background: black; */
    
    font-size: 25px;
    color:#F58B36;
}
li.nav-item {
    padding: 0 10px 0 10px;
}
.navbar-nav .nav-link {
    color: white !important;
    font-family: "Manrope", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 19px;
    padding:10px;
}

/* Active item bottom border */
.navbar-nav .nav-item.active .nav-link {
    border-bottom: 2px solid #F58B36;
}

button#navbarToggleBtn {
    color: white;
    border: 1px solid white;
}
/* Add mobile styles */
@media only screen and (max-width: 500px) {
    .menu-toggle {
        display: flex;
    }
    .portfolio{
        display: none;
    }
    .navbar-nav .nav-link {
        text-align: center;}
        
       .logo-footer {
    width: 150px;
}
    
}

footer{
background-color:#0E1836;
}
.social-icons {
    text-align: center;
}

.social-icons a {
    display: inline-block;
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    line-height: 40px;
    border-radius: 50%;
    color: white;
    background-color: #656B7F; /* Change color as desired */
    margin: 5px; /* Adjust spacing between icons */
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #F58B36; /* Change color as desired */
}

.social-icons a i {
    font-size: 25px; /* Adjust icon size as needed */
    color: #ffffff; /* Change icon color as desired */
}



hr.dashed {
    border-top: 1px solid #fff;
    width:80%;
  }
  
  .section-heading{
    color:white;
    font-family: "DM Sans", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    
  }
  .copywrite{
    font-family: "Heebo", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    color:rgb(129, 137, 151);
  }
  a {
    color: #F58B36;
}

label {
    display: flex;
    margin-bottom: .5rem;
    align-items: start;
    text-align: right;
}