
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.card:hover .icon-circle {
  transform: scale(1.1);
}
.hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.bg-gradient-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
}
.bg-gradient-warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
}
.bg-gradient-success {
  background: linear-gradient(135deg, #28a745, #218838);
}
.bg-gradient-info {
  background: linear-gradient(135deg, #17a2b8, #117a8b);
}

/* Perfect Service Select Dropdown - Matching Other Form Fields */
.form-select {
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 !important;
}

.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-select option {
  padding: 8px 12px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
}

.form-select option:disabled {
  color: #999;
  font-style: italic;
}

.form-select option:checked {
  background-color: #007bff;
  color: #fff;
}

/* Ensure dropdown matches input field styling exactly */
.form-select.n0-bg {
  background-color: #fff !important;
  border-radius: 0 !important;
  font-weight: normal;
  box-shadow: none;
}

.form-select.n0-bg:focus {
  background-color: #fff !important;
  color: #333 !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Change text color when option is selected */
.form-select.n0-bg:valid {
  color: #333 !important;
}

/* Remove default select styling */
.form-select.n0-bg::-ms-expand {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-select {
    font-size: 14px;
  }
}

.custom-select-style {
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23999' d='M8 11L3 6h10l-5 5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  color: #333;
  border-radius: 0.375rem; /* Optional: match rounded-3 */
}

.custom-select-style:focus {
  outline: none;
  box-shadow: none;
}

.custom-select-style option {
  color: #333;
}

.custom-select-style .placeholder-option {
  color: #b6b6b6;
}

/* thankyou page */
.thankyou-section {
    background-color: #f9f9f9;
}

.thankyou-box {
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
}

.contact-buttons .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 180px;
}

/* Icons size increased */
.btn-contact i {
    font-size: 1.5rem;
}

/* Individual button colors */
.btn-contact.call {
    background-color: #007bff;
}

.btn-contact.call:hover {
    background-color: #0062cc;
}

.btn-contact.email {
    background-color: #6c63ff;
}

.btn-contact.email:hover {
    background-color: #574ede;
}

.btn-contact.whatsapp {
    background-color: #25D366;
}

.btn-contact.whatsapp:hover {
    background-color: #1ebe57;
}

select.form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: background-color 0.3s ease;
}

/* Hover state */
select.form-control:hover {
    background-color: #C6E3D5;
}

/* Focus state */
select.form-control:focus {
    background-color: #C6E3D5;
    border-color: #8fc0a9; /* optional: update border to match tone */
    outline: none;
}
/* Responsive Mobile Logo Adjustment */
@media (max-width: 991.98px) {
    .mobile-logo {
        width: 330px !important;   /* Increased width */
        max-width: 90vw;           /* Responsive cap */
        height: auto !important;
        margin-top: 8px;
        margin-bottom: 8px;
        object-fit: contain;
    }
}

.no-wrap {
    white-space: nowrap;
}
.banner-section3 {
    height: 100vh; /* Full screen height */
    position: relative;
    overflow: hidden;
}

.banner-content h2,
.banner-content p {
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.heading-one-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive font sizes */
@media (max-width: 767.98px) {
    .heading-one-line {
        font-size: 28px !important;
        white-space: normal;
    }
    .banner-content p {
        font-size: 16px;
    }
}

/* Ensure image covers entire section */
.banner-section3 picture img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Keeps h2 in one line on tablets and up */
@media (min-width: 768px) {
  .keep-single-line-md {
    white-space: nowrap;
  }
}

/* Allows wrapping on smaller screens */
@media (max-width: 767.98px) {
  .keep-single-line-md {
    white-space: normal;
  }
}
.text-center {
    text-align: center;
}

@media (max-width: 480px) {
.banner-section3 {
    background: url(../images/team-home-banner.jpg) no-repeat center center;
    background-size: contain;
    position: relative;
    z-index: 1;
    height:auto;
    width:100%;
}

 .display-two {
        font-size: 15px !important;
        line-height: 46.4px;
    }
}


@media (max-width:800px) {
.banner-section3 {
    background: url(../images/team-home-banner.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    height:auto;
    width:100%;
}

 .display-two {
        font-size: 15px !important;
        line-height: 46.4px;
    }
     .banner-text-wrapper {
        padding-top: 30px;
        min-height: 50vh;
    }
  
}
/* Shared button base style */
.btn-outline-dark, 
.btn-outline-success {
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect for Call Us (Dark button) */
.btn-outline-dark:hover {
    background-color: #000; /* darker background */
    color: #fff; /* text color */
}

.btn-outline-dark:hover span,
.btn-outline-dark:hover i {
    color: #fff;
}

/* Hover underline for all buttons */
.btn-outline-dark::after,
.btn-outline-success::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: currentColor;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover::after,
.btn-outline-success:hover::after {
    opacity: 1;
}

/* Hover effect for WhatsApp button */
.btn-outline-success:hover {
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
}

.btn-outline-success:hover span,
.btn-outline-success:hover i {
    color: #fff;
}
/* Pagination Base Style */
.pagination-common li a,
.pagination-common li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 15px;
    border: 1px solid #ccc;
    color: #2e2e2e;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Active Page - Dark Green */
.pagination-common li a.active {
    background-color: #14532d; /* Dark Green */
    color: #fff;
    border-color: #14532d;
}

/* Hover Effect - Dark Green */
.pagination-common li a:hover {
    background-color: #14532d;
    color: #fff;
    border-color: #14532d;
}

/* Disabled Arrow */
.pagination-common li span.disabled {
    opacity: 0.4;
    pointer-events: none;
    background-color: #f5f5f5;
    color: #aaa;
    border-color: #ccc;
}

/* Responsive spacing */
@media (max-width: 576px) {
    .pagination-common {
        gap: 4px !important;
    }

    .pagination-common li a,
    .pagination-common li span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}
/* Header Logo Responsive Sizing */
/* .logo {
    max-width: 100%;
    height: auto;
}

.mobile-logo {
    height: 50px;
    width: auto;
}

.desktop-logo {
    height: 80px;
    width: auto;
} */

@media (max-width: 991.98px) {
    .desktop-logo {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-logo {
        display: none;
    }
}

/* Navbar button spacing */
.navbar-toggle-btn span {
    display: block;
    height: 2px;
    width: 25px;
    background: #000;
    margin-bottom: 5px;
    border-radius: 2px;
}
.know-us-section {
    padding: 120px 0 100px;
    background-color: #ff4500; /* Adjust for your brand orange */
    position: relative;
    text-align: center;
    overflow: hidden;
}

.know-us-section .content-box h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.4;
}

.know-us-section .content-box .box-style {
    margin-top: 30px;
    padding: 12px 28px;
    font-size: 1.125rem;
    background-color: white;
    color: black;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.know-us-section .box-style:hover {
    background-color: #e6e6e6;
}

.know-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    z-index: 0;
    opacity: 1;
}

/* .know-vector img {
    max-width: 100%;
    height: auto;
} */

/* Tablet */
@media (max-width: 1024px) {
    .know-us-section {
        padding: 90px 0 80px;
    }

    .know-us-section .content-box h2 {
        font-size: 2rem;
    }

    .know-vector {
        width: 180px;
        top: 10px;
    }

    .know-us-section .box-style {
        font-size: 1rem;
        padding: 10px 22px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .know-us-section .content-box h2 {
        font-size: 1.6rem;
    }

    .know-vector {
        width: 140px;
        top: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .header-section4 .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .navbar-toggle-item {
        padding-left: 0;
        padding-right: 0;
    }

    .custom-nav {
        gap: 1.5rem; /* Adjust gap for mid screens */
    }

    .logo img {
        max-width: 160px; /* Optional: scale down slightly for better fit */
    }
}
/* General logo styles */
.logo img,
.desktop-logo,
.mobile-logo {
    height: auto;
    width: auto;
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}
.logo img, .desktop-logo, .mobile-logo {
    height: auto;
    width: auto;
    max-height: 177px;
    max-width: 288px;
    object-fit: contain;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #ffce00;
}

.footer-section .logo {
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.footer-section ul.list-unstyled i {
    font-size: 18px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.footer-section ul.list-unstyled i:hover {
    background: #ffce00;
    color: #000;
}

@media (max-width: 767.98px) {
    .footer-section .top-area > div {
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
  .footer-section .top-area {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px; /* space between columns */
  }

  .footer-section .top-area > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }

  .footer-section .logo {
    max-width: 220px;
    height: auto;
    object-fit: contain;
  }

  .footer-section .list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-section ul.list-unstyled i {
    font-size: 18px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .footer-section ul.list-unstyled i:hover {
    background: #ffce00;
    color: #000;
  }

  .footer-section .single-box {
    height: 100%;
  }

  .footer-section .single-box h5 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
  }

  .footer-section .single-box ul li a {
    font-size: 0.95rem;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .footer-section .single-box ul li a:hover {
    color: #ffce00;
  }

  .footer-section .copyright-info {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.98px) {
  .footer-section .top-area {
    row-gap: 24px !important; /* reduce vertical spacing between rows */
  }

  .footer-section .top-area > div {
    margin-bottom: 0 !important;
  }

  .footer-section .logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
  }

  .footer-section p {
    margin-bottom: 16px !important;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .footer-section ul.list-unstyled {
    gap: 16px !important;
  }

  .footer-section ul.list-unstyled i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .footer-section .single-box h5 {
    font-size: 1rem;
    margin-bottom: 12px !important;
  }

  .footer-section .single-box ul li a {
    font-size: 0.9rem;
  }

  .footer-section .copyright-info {
    font-size: 0.8rem;
    text-align: center;
  }

  .footer-section .footer-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
/* Mobile Services Arrow */
.toggle-submenu .dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.toggle-submenu.active .dropdown-arrow {
    transform: translateY(-50%) rotate(-135deg);
}

/* Hide sub-menu by default in mobile */
.sub-menu {
    display: none;
}

.sub-menu.open {
    display: block;
}

/* Adjustments for mid-size devices */
@media (min-width: 992px) and (max-width: 1200px) {
    .header-section4 .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .navbar-toggle-item {
        padding-left: 0;
        padding-right: 0;
    }

    .custom-nav {
        gap: 1.5rem;
    }

    .logo img {
        max-width: 160px;
    }
}

/* Mobile Logo Size Fix */
@media (max-width: 991.98px) {
    .mobile-logo {
        max-width: 140px;
        height: auto;
    }
}
@media (min-width: 667px) and (max-width: 991.98px) {
    .footer-section .top-area {
        row-gap: 2rem;
        column-gap: 2rem;
    }

    .footer-section .single-box {
        text-align: left;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .footer-section .logo {
        max-width: 180px;
        height: auto;
    }
}
