* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.bg-dark {
    background: #000000 !important;
}

.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-dark {
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Allows the column to grow based on content */
.icon-text {
    white-space: nowrap;
}

a {
    text-decoration: none;
}

h5 {
    text-transform: uppercase;
}

/* Top Header Styling Start */
.header {

    padding: 15px 0;
}

.logo-img-container {
    height: 60px;
}

.logo-img {
    height: 50px;
}

.logo-img-2 {
    height: 100%;
    padding: 12px;
}

.custom-header-link-icon {
    color: #ffffff;
    font-size: 20px;
    padding-top: 18px;
    padding-right: 6px;
    display: inline;
}

.icon-content {
    padding-left: 10px;

}

.icon-heading {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0;
}

.icon-text {
    font-size: 13px;
    font-weight: 500;
    padding: 0;
}

/* General styling for social icons */
.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 24px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    top: 0;
}

.social-icons a:hover {
    transform: translateY(-10px);
}


/* Top Header Styling End */
.btn-dark:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.btn-yellow {
    background: #F7C02D !important;
    padding: 8px 12px;
}

.btn-yellow:hover {
    background: #e0a800 !important;
    padding: 8px 12px;
}

.btn-yellow-outline {
    padding: 10px 20px !important;
    border: 1px solid #F7C02D;
    border-radius: 4px;
    color: #F7C02D;
}

.btn-yellow-outline:hover {
    background-color: #F7C02D;
    color: #ffffff;
}

.btn-white {
    background: #ffffff !important;
    padding: 8px 12px;
    border: 1px solid black !important;
}


/* Footer styles */
.footer-start {
    background-color: #000; /* Black background */
    padding: 40px 0;
}

.footer {
    color: #fff;
}

.footer a {
    color: #ffffff; /* Yellow link color */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .form-control {
    margin-bottom: 15px;
}

/* .list-group-item{
  white-space: nowrap ;
} */
.footer-logo {
    width: 200px;
    margin-bottom: 15px;
}

.footer h5 {
    font-weight: bold;
}

.footer .btn {
    background-color: #F7C02D; /* Yellow button */
    color: #000; /* Black text */
}

.footer .btn:hover {
    background-color: #e0a800;
}

.footer-end {
    background-color: #f7c02d;
    padding: 10px 10px;
    color: #000000;
}

.footer-img {
    width: 120px;
    height: 30px;
}

.input-item {
    flex: 0 0 auto; /* Ensures the column can expand */
    width: auto; /* Allows the column to grow based on content */
}

.footer-icon {
    color: #f7c02d;
    font-size: 30px;
    padding-top: 12px;
    padding-right: 10px;
}

.footer-icon:hover {
    color: #ffffff;
}

.quick-link-icons {
    color: #f7c02d;
}

.quick-link-icons:hover {
    color: #ffffff;
}

.footer-icon-star {
    padding-right: 0 !important;
}

/* weather card */
.weather-card {
    background-color: #f7c02d;
    border-radius: 10px;
    width: 100%;
}

.weather-icon {
    width: 50px;
}

.temp {
    font-size: 3rem;
    font-weight: bold;
}

.weather-condition {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
}

.weather-info {
    font-size: 0.9rem;
}

.card-footer {
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 11px !important;
    padding: 5px 0;
}

.time-date {
    font-size: 0.9rem;
    font-weight: normal;
}

.heading-span {
    color: #F7C02D;
}

@media (max-width: 768px) {

    .text-sm-center {
        text-align: center;
    }

    .footer-logo {
        width: 100%;
    }

    .star-icons {
        text-align: center;

    }

    .footer-social-icon {
        align-items: center;
        justify-content: center;
    }

}

/* Footer Style End */

/* pricing row */
.no-listing-container{
    margin-top: 80px;
    height: 600px !important;
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 0;
    border: 1px solid #ccc;


}

.pricing-option {
    display: flex;
    align-items: center;
    background-color: #ccc;
    padding: 12px 16px;
    border-radius: 0 50px 50px 0;
    border-top: 1px solid #a0a0a0;
    border-right: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
}

.pricing-option i {
    margin-right: 5px;
    color: #F7C02D;
}

.pricing-delivery, .pricing-price, .pricing-total {
    text-align: center;
}

.pricing-action {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
    }

    .pricing-option {
        align-self: start;
        width: 35%;
        margin-left: 0 !important;
        border: 0;
        margin-bottom: 20px !important;

    }

}

/* Navbar Styling Start*/
.navbar {
    background-color: #F7C02D;
}

.bg-yellowish {
    background-color: #F7C02D !important;
}



.btn-dark-sm {
    font-size: 13px !important;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link {
    text-transform: capitalize;
    font-weight: bold;
    color: #000000;
    padding-right: 12px !important;
}

.btn-dark:hover {
    background: #ffffff;
    color: #000000;
    border: none;
}

a.nav-link {
    font-size: 16px !important;
}

a.list-group-item:hover {
    color: #F7C02D;
}

.dropdown-mega .dropdown-menu {
    padding: 0;
    width: 100%; /* This keeps it aligned within the .container */
    overflow: hidden;
    position: absolute;
    left: 0; /* Align with the container */
    right: 0; /* Align with the container */
    max-width: 1250px; /* or whatever the max-width of your container is */
    margin: 0 auto; /* Center it */
}

.dropdown-mega .dropdown-menu .list-group {
    padding: 10px;
}

.dropdown-mega .dropdown-menu .list-group .list-group-item {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-bottom: 1px solid gray !important;
    padding-bottom: 15px;
}

.dropdown-mega .dropdown-menu .list-group .list-group-item:last-child {
    border-bottom: none !important;
}

.dropdown-mega .mega-content .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
}

.mega-menu-icons {
    margin-right: 10px;
    fill: #f7c12d !important;
}

.text-primary {
    color: #f7c12d !important;;
}

.dropdown-mega .dropdown-menu .list-group a {
    font-weight: bold;
}
/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    /* navbar */
    .dropdown-mega .dropdown-menu {
        position: static;
        background: #00000097;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .dropdown-mega .mega-content .container {
        padding: 0;
    }

    .dropdown-mega .mega-content .row {
        flex-direction: column;
    }

    .dropdown-mega .col-lg-3, .dropdown-mega .col-sm-6 {
        width: 100%;

    }

    .mega-menu-icons {
        display: none;
    }

    .dropdown-mega .mega-content {
        padding: 10px;
    }

    .nav-link {
        text-transform: capitalize;
        font-weight: 600;
    }

    .dropdown-mega .dropdown-menu .list-group a {
        padding: 12px 10px;
        font-size: 14px;
        color: #ffffff;
        text-transform: capitalize !important;
        text-decoration: none;
        font-weight: lighter;
    }

    .dropdown-mega .mega-content .container {
        background-color: #000000;
    }

    .banner-mega-col {
        display: none;
    }

    .dropdown-mega .dropdown-menu .list-group .list-group-item {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        background: #000000;
    }

    .dropdown-mega .dropdown-menu .list-group {
        border: none !important;
    }

    /* Force Mega Menu link to align left */
    .dropdown-mega, .dropdown-mega .nav-link {
        text-align: left !important;
        display: block;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .column-item {
        justify-content: center;
    }


    .btn-dark-sm {
        display: block !important;
    }

    .btn-dark-lg {
        display: none !important;
    }

    .navbar-toggler {
        padding: 4px 6px;
    }

    /* Custom styles for the navbar-toggler-icon */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        /* Use black icon (color set in SVG format) */
    }

    /* Adjust the height and width of the button for better iPhone spacing */
    .navbar-toggler-icon {
        height: 1.5rem;
        width: 1.5rem;
    }

    i.fas.fa-angle-double-right {
        color: white !important;
    }
}

/* Responsive Styles for Desktop */
@media (max-width: 991px) {

    /* navbar */
    /* navbar */
    .dropdown-mega .dropdown-menu {
        position: static;
        background: #00000097;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .dropdown-mega .mega-content .container {
        padding: 0;
    }

    .dropdown-mega .mega-content .row {
        flex-direction: column;
    }

    .dropdown-mega .col-lg-3, .dropdown-mega .col-sm-6 {
        width: 100%;

    }

    .mega-menu-icons {
        display: none;
    }

    .dropdown-mega .mega-content {
        padding: 10px;
    }

    .nav-link {
        text-transform: capitalize;
        font-weight: 600;
    }

    .dropdown-mega .dropdown-menu .list-group a {
        padding: 12px 10px;
        font-size: 14px;
        color: #ffffff;
        text-transform: capitalize !important;
        text-decoration: none;
        font-weight: lighter;
    }

    .dropdown-mega .mega-content .container {
        background-color: #000000;
    }

    .banner-mega-col {
        display: none;
    }

    .dropdown-mega .dropdown-menu .list-group .list-group-item {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        background: #000000;
    }

    .dropdown-mega .dropdown-menu .list-group {
        border: none !important;
    }

    /* Force Mega Menu link to align left */
    .dropdown-mega, .dropdown-mega .nav-link {
        text-align: left !important;
        display: block;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .column-item {
        justify-content: center;
    }

    .btn-dark-sm {
        display: block !important;
    }

    .btn-dark-lg {
        display: none !important;
    }

    .navbar-toggler {
        padding: 4px 6px;
    }

    /* Custom styles for the navbar-toggler-icon */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        /* Use black icon (color set in SVG format) */
    }

    /* Adjust the height and width of the button for better iPhone spacing */
    .navbar-toggler-icon {
        height: 1.5rem;
        width: 1.5rem;
    }

    i.fas.fa-angle-double-right {
        color: white !important;
    }

    .sidebar {
        background-color: #000000;
    }

    .nav-link {
        color: #ffffff !important;
        text-align: left !important;
    }

    .nav-link:active {
        color: #F7C02D !important;
    }

    .btn-dark-sm {
        display: block;
    }

    .custom-header-link-icon {
        color: #ffffff;
        font-size: 16px;
        padding-top: 18px;
        padding-right: 6px;
        display: inline;
    }

    .icon-content {
        padding-left: 10px;

    }

    .icon-heading {
        font-size: 13px;
        font-weight: bold;
        margin-bottom: 0;
    }

    .icon-text {
        font-size: 13px;
        font-weight: 500;
        padding: 0;
    }

    .social-icons a {
        color: #fff;
        margin-right: 5px;
        font-size: 24px;
        display: inline-block;
        transition: color 0.3s ease, transform 0.3s ease;
        position: relative;
        top: 0;
    }

    .column-item {
        justify-content: center;
    }
}

@media (min-width: 991px) {
    /* navbar */
    .btn-dark-sm {
        display: none;
    }

    .nav-item.dropdown-mega:hover .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown-mega:hover .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Navbar Styling End */


/* bookingpage */
/* hero */
.content-wraper {
    height: 600px;
    background: #464646;
}



#hero {
    position: relative;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    color: #ffffff;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.btn-white, .btn-warning {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border: none !important;
}

.btn-white:hover , .btn-warning:hover {

    background-color: #000 !important;
    color: #ffffff !important;
}
/* form styling after hero */
.btn-primary {
    background-color: #f7c12d !important;
    outline: none !important;
    border: none !important;
    padding: 15px 16px !important;
    border-radius: 0 !important;
    width: 100%;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #eaa800 !important;
    outline: none !important;
    border: none !important;
}

.form-control:focus {
    outline: #f7c12d;
}

#quoteForm .form-control,
#quoteForm .form-select {
    padding: 14px 20px;
}

#quoteForm .form-control,
#quoteForm .form-select,
#quoteForm button {
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column !important;
    }

    .flex-item {
        flex: 0 0 100%;
    }

    .errorPlace {
        margin-top: -15px;
    }

    .btn-primary {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .flex-item {
        flex: 0 0 100%;
    }

}

@media (max-width: 991px) {
    .form-control, .form-select {
        margin-bottom: 15px;
    }

    .errorPlace {
        margin-top: -18px;
    }

    .flex-item {
        flex: 0 0 50%;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-primary {
        padding: 15px 10px !important;
    }
    .card-form{
        margin-top: 10px !important;
    }
}


.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none !important;
    border-color: #dc3545 !important;
    padding-right: 0.75em !important;
}

.form-control.is-valid, .was-validated .form-control:valid {
    background-image: none !important;
    border-color: #28a745 !important;
    padding-right: 0.75em !important;
}

.form-select.is-invalid, .was-validated .form-select:invalid {
    background-image: none !important;
    border-color: #dc3545 !important;
    padding-right: 0.75em !important;
}

.form-select.is-valid, .was-validated .form-select:valid {
    background-image: none !important;
    border-color: #28a745 !important;
    padding-right: 0.75em !important;
}
.buy-now-tab{
    margin-top: 10px;
}
.buy-now-bottom{
    height: 10px;
    margin: 10px 0;
}
.buy-now-tab-div{
    background-color: #000;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}
.card-form {
    margin-top: -130px;
}
#quoteForm{
    border-radius: 0 8px 8px 8px;
}

/* Feature Box Styling */
#features .feature-box {
    display: flex;
    align-items: center;
    padding: 20px;
    color: #000;
    text-align: left; /* Aligns text to the left side within each box */
}

#features .yellow-bg {
    background-color: #ffc107;
    color: #000;
}

#features .black-bg {
    background-color: #000;
    color: #fff;
    transform: scale(1.11);
}

#features .icon-container {
    background-color: #000; /* Navy background */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

#features .yellow-icon {
    background-color: #ffc107; /* Yellow background */
}

#features .icon-container i {
    color: #fff;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
}

.feature-subtitle {
    margin: 0;
    font-size: 18px;
}

/* About Section Styling */
#about {
    color: #000;
}
.oilspillkit-img{
    height: 350px;
    width: 100%;
}
.oilspillkit-img img{
    height: 100%;
    width: 100%;
}
.oilspillkit-img-next{
    height: 520px;
    width: 100%;
}
.oilspillkit-img-next img{
    height: 100%;
    width: 100%;
}

.oilspillkit-img-next-black{
    background: #000;
}
/* Decorative Title Styling */
.about-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.icon-decoration {
  color: #ffc107; /* Yellow color for icons */
  margin: 0;
}

/* Section Heading Styling */
#about h2 {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Paragraph Styling */
.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Call to Action Styling */
.call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.cta-icon-container {
    background-color: #ffc107; /* Yellow background for the icon */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-container i {
    color: #ffffff; /* Navy color for the icon */
    font-size: 1.5rem;
}

.cta-text {
    text-align: left;
}

.cta-heading {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    color: #000; /* Navy color for heading */
}

.cta-phone {
    font-size: 1rem;
    margin: 0;
    color: #555;
}

.about-us-next {
    background: #f2f2f2;
    border-radius: 30px 10px 30px 10px;
}

#about-features .feature-box {
  display: flex;
  align-items: center;
  display: flex;
  color: #000;
  text-align: left; /* Aligns text to the left side within each box */
    display: flex;
    align-items: center;
    color: #000;
    text-align: left; /* Aligns text to the left side within each box */
}

#about-features .icon-container {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
#about-features .icon-container i {
  color: #ffc107;
  font-size: 50px;
}

.feature-title {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
}

.feature-subtitle {
  margin: 0;
  font-size: 16px;
}
/* project section
#projects img {
  margin: 10px;
  border-radius: 8px;
} */

 /* Styling for overlay on image hover */
 .galary-images > img{
    height: 100%;
 }
    .image-wrapper {
      position: relative;
      height: 300px;
      overflow: hidden;
      cursor: pointer;
    }
    .image-wrapper img {
      width: 100%;
      height: 100%;
      transition: transform 0.3s ease;
      object-fit: cover;
    }
    .image-wrapper:hover img {
      transform: scale(1.1);
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .image-wrapper:hover .overlay {
      opacity: 1;
    }
    p{
        font-size: 18px;
    }
    /* Scoped Styles for Modal Carousel */
    #imageModal .modal-dialog {
      max-width: 100vw;
      height: 100vh;
      margin: 0;
    }
    #imageModal .modal-content {
      background-color: transparent; /* Transparent modal background */
      border: none;
      height: 100vh;
    }
    #imageModal .carousel-item img {
      object-fit: contain;
      width: 100vw;
      height: 100vh;
    }
    .reviw-trustpoint{
        height: 10px;
        width: 150px;
    }

    .btn-close{
        z-index: 9999 !important;
    }
    /* Resume Button Styling */
.resume-button {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #ffc107; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.resume-button:hover {
    transform: scale(1.1);
}

.resume-icon {
    font-size: 24px;
    color: #fff;
}

.video-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 600px;
}

.video-container video {
    width: 100%;
    border-radius: 8px;
}

.close-button {
    position: absolute;
    top: -30px;
    right: -30px;
    background-color: #ffc107;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.resume-button {
    position: relative;
    display: inline-flex;
    width: 60px;
    height: 60px;
    background-color: #ffc107;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.resume-button:hover {
    transform: scale(1.05);
}

.resume-icon {
    font-size: 24px;
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 218, 9, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}


    @media (max-width: 768px) {
        .feature-box{
            margin-bottom: 20px !important;
        }
        #features .black-bg {
            background-color: #000;
            color: #fff;
            transform: scale(1.05);
        }
        .hero-overlay{
            text-align: center;
        }
        .hero-title{
            font-size: 16px !important;
        }
        .hero-subtitle  span {
            font-size: 34px !important;
        }
        .hero-subtitle {
            font-size: 20px !important;
        }
        .btn-white-hero{
            display: block;
            margin: 10px auto;
            width: 40%;
        }
        .btn-warning{
            display: block;
            margin: 0 auto;
            width: 60%;
        }
        .hero-description{
            font-size: 15px !important;
        }
        .oilspillkit-img-div{
            margin: 10px 0;
        }
        .count-icons{
            display: block;
        }
        .feature-title{
            font-size: 14px;
        }
        .feature-subtitle{
            font-size: 13px !important;
        }
        .services-span{
            font-size: 15px;
            text-align: center;
        }
        .buy-now-bottom >img {
            display: block;
            width: 100%;
        }
        .oilspillkit-img-next{
            height: 520px;
            width: 100%;
        }
    }
    @media (max-width: 991px) {
        
        .services-span{
            font-size: 15px;
        }
        .btn-white-hero{
            display: block;
            width: 40%;
        }
        .btn-warning{
            display: block;

            margin-top: 10px;
        }
        .feature-title{
            font-size: 14px;
        }
        .feature-subtitle{
            font-size: 13px !important;
        }
    }
