/* Global Theme Color */
body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255); /* Transparent background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for professional look */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: 50px; /* Smaller logo size for better fit on small devices */
    margin-right: 10px;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #DF1010;
    font-weight: 700;
}

/* Optional hover effect */
.brand-name:hover {
   text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
   transition: text-shadow 0.3s ease-in-out;
}

.brand-name .brand-name-black {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: black;
    font-weight: 700;
}

.navbar .nav-item .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar .nav-item .nav-link:hover {
    color: #F24F4F; /* Theme color on hover */
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #fff; /* White icon for better visibility */
    border-radius: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide long brand name on small screens */
.d-lg-inline {
    display: inline;
}

.d-lg-none {
    display: none;
}

@media (max-width: 992px) {
    .d-lg-inline {
        display: none;
    }

    .d-lg-none {
        display: inline;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        width: 35px; /* Adjust logo size for extra small screens */
    }

    .brand-name {
        font-size: 1rem;
    }
    .brand-name .brand-name-black {
        font-size: 1rem;
    }
}

/* Home Section */
.home-section {
    height: 100vh;
    background: url('images/background.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay to improve text readability */
}

.home-section .container {
    z-index: 1;
}

.home-section h1 {
    font-size: 3.5rem;
    color: #F24F4F;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.home-section p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.home-section .btn {
    padding: 10px 30px;
    border: 2px solid #F24F4F;
    color: #fff;
    font-size: 1.1rem;
}

.home-section .btn:hover {
    background-color: #F24F4F;
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.delay-1s {
    animation-delay: 1s;
}

.delay-2s {
    animation-delay: 2s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .home-section h1 {
        font-size: 1.75rem;
    }
    .home-section p {
        font-size: 0.875rem;
    }
    .home-section .btn {
        padding: 6px 15px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .home-section h1 {
        font-size: 1.5rem;
    }
    .home-section p {
        font-size: 0.75rem;
    }
    .home-section .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* About Us Section */
.about-section {
    background-color: #f9f9f9;
    padding: 60px 15px;
}

.about-image img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about-content h2 {
    color: #F24F4F;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.about-content .btn {
    margin-top: 20px;
    border: 2px solid #F24F4F;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    color: #F24F4F;
}

.about-content .btn:hover {
    background-color: #F24F4F;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .about-content h2 {
        font-size: 1.5rem; /* Adjust for smaller screens */
    }

    .about-content p {
        font-size: 1rem; /* Adjust for smaller screens */
    }

    .about-content .btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.services-section h2 {
    color: #F24F4F;
    margin-bottom: 20px;
}

.services-section .service-box {
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.services-section .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-section .icon {
    color: #F24F4F;
    margin-bottom: 15px;
}

.services-section .service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.services-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .services-section h2 {
        font-size: 1.5rem; /* Adjust for smaller screens */
    }
    .services-section {
       padding: 0 0;
   }
}


/* Team Section */
.team-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-name {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.team-member p {
    font-size: 1rem;
    color: #666;
}

.team-member .position {
    color:  #F24F4F;
}

.team-section h2{
    color:  #F24F4F;
}

.team-member img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.team-section .social-icons a {
    color: #666;
    transition: color 0.3s ease;
}

.team-section .social-icons a:hover {
    color: #F24F4F; /* Theme color */
}

.lead{
    color: #666;
    font-size: 1.15rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .team-section h2 {
        font-size: 1.5rem; /* Adjust for smaller screens */
    }
    .lead {
        font-size: 1rem; /* Adjust for smaller screens */
    }

}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.contact-section .contact-profile .btn {
    margin-top: 20px;
    border: 2px solid #F24F4F;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    color: #F24F4F;
}

.contact-section .contact-profile .btn:hover {
    background-color: #F24F4F;
    color: white;

}


.contact-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-info h4 {
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.contact-info i {
    color: #F24F4F;
}

.contact-info .social-icons a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-info .social-icons a:hover {
    color: #F24F4F; /* Theme color */
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-form h4 {
    color: #333;
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: #F24F4F;
    box-shadow: none;
}

.contact-form .btn {
    font-size: 1.1rem;
    background-color: #F24F4F;
    border-color: #F24F4F;
}

.contact-form .btn:hover {
    background-color: #d43c3c;
    border-color: #d43c3c;
}

.contact-section h2{
    color:  #F24F4F;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.5rem; /* Adjust for smaller screens */
    }
    .contact-section {
       padding-top: 0;
   }
}

/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
}

.footer h5 {
    color: #F24F4F;
    margin-bottom: 20px;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.footer ul li i {
    color: #F24F4F;
}

.footer .social-icons a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #F24F4F;
}

.footer .form-control {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

.footer .form-control:focus {
    border-color: #F24F4F;
    box-shadow: none;
}

.footer .subscribe {
    background-color: #F24F4F;
    border-color: #F24F4F;
    color: white;
}

.footer .subscribe:hover {
    background-color: #d43c3c;
    border-color: #d43c3c;
}

.footer p {
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer {
        text-align: center;
    }
}

/* Styles for the newsletter section */
.horizontal-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#mc-embedded-subscribe {
  background-color: #F24F4F;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#mc-embedded-subscribe:hover {
  background-color: #d93e3e;
}

.mc-field-group {
  margin-bottom: 1rem;
}

.optionalParent p {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.rights-reserved {
  width: 100%;
}

.refferal_badge {
  display: inline-block;
  padding-left: 20px;
}

.whatsapp_float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 15px;
  font-size: 25px;
  z-index: 100;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.whatsapp_float:hover {
  background-color: #128C7E;
  text-decoration: none;
  color: white;
}

/* Testimonials Carousel Styles */
#testimonialCarousel {
  max-width: 800px;
  margin: 50px auto;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.testimonial-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.testimonial-content {
  padding: 20px;
}

.testimonial-text {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 16px;
  font-weight: bold;
  color: #F24F4F;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #F24F4F;
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #d03d3d;
}

/* Responsive Design */
@media (max-width: 768px) {
  #testimonialCarousel {
    padding: 20px;
}

.testimonial-text {
    font-size: 16px;
}
}

/* Contact Section Styles */
.contact-section-1 {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-info-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contact-info-card.text-center {
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item i {
  color: #F24F4F; /* Icon color */
  font-size: 24px; /* Icon size */
  margin-bottom: 10px;
}

.contact-item h5 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Google Map Styles */
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info-card {
    margin-top: 30px;
}
}


.modal-body {
    padding: 20px;
    color: #333;
}

.modal-content {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal .close {
    font-size: 1.5rem;
}

a.text-white:hover {
    color: #ff7f7f;
}

.footer h4 {
    color: #F24F4F;
    font-size: 1.1rem;
}

.footer a {
  color: #ccc;
  font-size: 0.9rem;
}

.policies{
    width: 100%;
}

.contact-info {
    margin-top: 20px;
}
.job-openings {
    margin-top: 20px;
}
/* Custom modal styling */
.custom-modal .modal-content {
    border-radius: 8px;
    border: 1px solid #F24F4F;
}
.custom-modal .modal-header {
    background-color: #F24F4F;
    color: #fff;
    border-bottom: 1px solid #F24F4F;
    padding: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.custom-modal .modal-title {
    font-weight: bold;
    font-size: 16px;
}
.custom-modal .modal-body {
    padding: 20px;
}
.custom-modal .modal-body ul {
    list-style-type: none;
    padding: 0;
}
.custom-modal .modal-body li {
    margin-bottom: 10px;
}
.custom-modal .modal-body a {
    color: #F24F4F;
    text-decoration: none;
}
.custom-modal .modal-body a:hover {
    text-decoration: underline;
}
.custom-modal .modal-footer {
    border-top: 1px solid #F24F4F;
    padding: 15px;
    background-color: #f9f9f9;
}
.custom-modal .close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    opacity: 1;
}
.custom-modal .close:hover {
    color: #d9d9d9;
}

.no-openings {
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 20px;
}

/* Cursor pointer for nav links */
.navbar-nav .nav-link {
    cursor: pointer;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 15px;
    z-index: 1000;
    display: none;
}

.cookie-container {
    max-width: 960px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.cookie-container p {
    margin-bottom: 10px;
    font-size: 14px;
}

.cookie-container a {
    color: #F24F4F;
    text-decoration: underline;
}

.cookie-container .btn {
    background-color: #F24F4F;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
}

.cookie-container .btn:hover {
    background-color: #cc3e3e;
}

#cookieModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 20px;
    background-color: #fff;
}

#cookieModal .modal-header {
    background-color: #F24F4F;
    color: #fff;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#cookieModal .modal-title {
    font-size: 18px;
    font-weight: bold;
}

#cookieModal .close {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.cookie-modal-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.cookie-modal-body p {
    margin-bottom: 10px;
}

.cookie-modal-body a {
    color: #F24F4F;
}

#cookieModal .modal-footer {
    border-top: 1px solid #ddd;
    padding: 15px;
    text-align: right;
}

.footer-secure-badge {
    width:100%;
}

.footer-secure-badge img {
    max-width:40px;
}

.top-bar .social-icons a {
    color: #F24F4F; /* Matching your theme */
}

.top-bar {
    font-size: 14px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .top-bar {
        font-size: 12px; /* Smaller font size for smaller screens */
    }
    
    .top-bar .social-icons {
        margin-top: 10px; /* Ensure proper spacing on small devices */
    }

    /* Stack call info and social icons vertically on small screens */
    .top-bar .row {
        text-align: center;
        flex-direction: column;
    }
    
    .top-bar .text-left, .top-bar .text-right {
        text-align: center !important;
        margin-bottom: 5px;
    }
}

/* Apply Nunito Sans font to the navbar */
.navbar-nav .nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700; /* You can adjust this if you want a lighter or bolder font */
    color: #000; /* Default color for the navbar links */
}

/* Highlight the active section link */
.navbar-nav .nav-link.active {
    color: #F24F4F; /* Highlight color for the active link */
    border-bottom: 2px solid #F24F4F; /* Add a bottom border to emphasize the active link */
}