
:root {
    --dark: #272727;
    --gray: #747474;
    
    --yellow: #FFE400;
    --green: #14A76C;
    --white: #ffffff;

    --primary: #FF652F;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;

}

body {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,101,47,0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(20,167,108,0.03) 0%, transparent 20%);
    background-attachment: fixed;
	cursor: url('default-cursor.svg'), auto;
}
a, button {
    cursor: url('pointer-cursor.svg'), pointer;
}

.gradient-text {
    background: linear-gradient(90deg, #FF652F, #14A76C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0) 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-primary:hover:after {
    transform: translateX(0) rotate(15deg);
}




.btn-primary-whatsapp {
    position: relative;
    overflow: hidden;
	background-color:#25D366;
	color:#ffffff;
}
.btn-primary-whatsapp:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0) 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
	
}
.btn-primary-whatsapp:hover:after {
    transform: translateX(0) rotate(15deg);
}




/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Top Bar */
.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/* Hero Title Color */
.carousel-caption h1 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Navbar */
.navbar {
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FF652F !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown-menu {
    border: none !important;
}

.dropdown-item {
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--accent) !important;
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.carousel-item {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.carousel-caption .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.carousel-caption h6 {
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Hero Section Buttons */
.btn-primary {
    background-color: #FF652F !important; /* Orange */
    border-color: #FF652F !important;
    color: white !important;
}

.btn-primarynew {
    background-color: #25D366; /* WhatsApp Green */
    border-color: #25D366 !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #e05525 !important; /* Darker orange on hover */
    border-color: #e05525 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 101, 47, 0.3);
}
.btn-secondary {
    background-color: #14A76C !important; /* Green */
    border-color: #14A76C !important;
    color: white !important;
}

.btn-secondary:hover {
    background-color: #11915d !important; /* Darker green on hover */
    border-color: #11915d !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 167, 108, 0.3);
}
/* Specific button styles for hero section */
.hero-section .btn-primary {
    background-color: #FF652F !important;
    border-color: #FF652F !important;
}

.hero-section .btn-secondary {
    background-color: #14A76C !important;
    border-color: #14A76C !important;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: #25D366;
    transform: translateY(-3px);
	color:white;
}

/* Carousel Controls */
/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #FF652F;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #14A76C;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}



.carousel-indicators [data-bs-target] {
    width: 50px;
    height: 33px;
    background-color: var(--accent);
    border-radius: 30px;
    margin: 0 10px;
    transition: all 0.3s;
}

.carousel-indicators [data-bs-target]:hover,
.carousel-indicators .active {
    background-color: var(--green);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 600px;
    }
    
    .carousel-caption h1 {
        font-size: 3rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption h6 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
}

/* Marquee Animation */
.marquee-container {
    width: 500px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    position: relative;
    animation: marquee 10s linear infinite;
    padding-left: 100%;
    /* Start off-screen */
    transform: translateX(0);
}

.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Social Icons Hover Effect */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FF652F !important;
}

.social-icon:hover i {
    color: white !important;
}

/* Ensure initial colors */
.social-icon i {
    color: #FF652F;
    transition: all 0.3s ease;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
}

#note:hover .marquee-text {
    animation-play-state: paused;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: #FF652F  !important; /* Solid white instead of transparent */
    text-shadow: none; /* Remove any text shadow */
    -webkit-text-stroke: 0; /* Remove the stroke */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1;
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
/* Service Item Container */
.service-item {
    position: relative;
    overflow: hidden; /* Keeps zoomed image contained */
    border-radius: 8px;
    transition: all 0.3s ease;
	transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image Zoom Effect */
.service-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images fill container */
}

.service-item:hover img {
    transform: scale(1.08); /* Subtle zoom (adjust as needed) */
}

/* Text Container - Stays Static */
.service-text {
    position: relative; /* Changed from absolute to keep text below image */
    background: #f8f9fa;
    padding: 20px;
    transition: none; /* Remove any text transitions */
}

/* Optional: Add slight elevation on hover */
.service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 101, 47, 0.15);
}
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}


.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.testimonial-item {
    perspective: 1000px;
}
.testimonial-item .card {
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.testimonial-item:hover .card {
    transform: rotateY(10deg);
}

/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/* Gallery Section */
/* Gallery Section */
.gallery-container {
    min-height: 300px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal */
#lightboxModal .modal-content {
    background: transparent;
    border: none;
}

#lightboxModal .modal-body {
    padding: 0;
    text-align: center;
}

#lightboxImage {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 200px;
    }
    
    #lightboxImage {
        max-height: 60vh;
    }
}


/* FAQ Section */
.accordion-button {
    border-radius: 0.5rem !important;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 101, 47, 0.1);
    color: #FF652F;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 101, 47, 0.25);
    border-color: #FF652F;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,.125);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #FF652F;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* FAQ Section */
.accordion-button {
    border-radius: 0.5rem !important;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 101, 47, 0.1);
    color: #FF652F;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 101, 47, 0.25);
    border-color: #FF652F;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Top3 Section - Modern Style */
.top3-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 0;
}

.top3-item {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 101, 47, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.top3-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FF652F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.top3-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 101, 47, 0.15);
}

.top3-item:hover::before {
  transform: scaleX(1);
}

.top3-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #FF652F;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 101, 47, 0.3);
}

.top3-item:hover .top3-icon {
  transform: rotate(15deg) scale(1.1);
  background: #182333;
}

.top3-item h3 {
  color: #272727;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.top3-item h2 {
  color: #FF652F;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.top3-btn {
  display: inline-block;
  background: #FF652F;
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #FF652F;
  box-shadow: 0 4px 15px rgba(255, 101, 47, 0.2);
}

.top3-btn:hover {
  background: white;
  color: #FF652F;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 101, 47, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .top3-item {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .top3-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .top3-item h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .top3-section {
    padding: 3rem 0;
  }
  
  .top3-item {
    padding: 1.75rem;
  }
  
  .top3-icon {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .top3-item h3 {
    font-size: 1.1rem;
  }
  
  .top3-item h2 {
    font-size: 1.3rem;
  }
  
  .top3-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}



/* Custom Background Shades */
.bg-dark-800 {
  background-color: rgba(30, 35, 40, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Form Enhancements */
.appointment .form-control {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background-color: rgba(20, 25, 30, 0.7) !important;
  transition: all 0.3s ease;
}

.appointment .form-control:focus {
  border-color: #FF652F !important;
  background-color: rgba(20, 25, 30, 0.9) !important;
  box-shadow: 0 0 0 3px rgba(255,101,47,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.appointment .form-floating>label {
  color: rgba(255, 255, 255, 0.6);
}

.appointment .form-control:focus~label,
.appointment .form-control:not(:placeholder-shown)~label {
  color: #FF652F;
}

.appointment .form-check-input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.2em;
}

.appointment .form-check-input:checked {
  background-color: #FF652F;
  border-color: #FF652F;
}

.appointment .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 101, 47, 0.25);
}

.appointment .btn-primary {
  background-color: #FF652F;
  border-color: #FF652F;
  transition: all 0.3s ease;
}

.appointment .btn-primary:hover {
  background-color: #e05525;
  border-color: #e05525;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 101, 47, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .appointment .bg-dark {
    padding: 2rem !important;
  }
  
  .appointment .form-check {
    padding: 1rem !important;
  }
}



.animated-diagonal-divider {
    height: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: -1px 0;
}

.animated-diagonal-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom right,
        #FF652F 49.9%,
        transparent 50.1%
    );
    animation: sweep 3s ease-in-out forwards;
}

@keyframes sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.floating-shapes {
    position: relative;
    height: 100%;
}
.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s infinite ease-in-out;
}
.house { /* SVG house icon */ }
.tool { /* SVG tool icon */ }
.checkmark { /* SVG checkmark */ }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}




/* Pulsing Dot */
.pulsing-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.mold { background: #8D9297; }
.leak { background: #14A76C; }
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}


/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF652F;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #747474;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-icon {
  font-size: 2rem;
  color: rgba(255, 101, 47, 0.2);
  transition: all 0.3s ease;
}
.stat-card:hover .stat-icon {
  color: #FF652F;
  transform: scale(1.1);
}

/* Add to your existing image styles */
.position-relative.overflow-hidden.ps-5.pt-5.h-100 img {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.position-relative.overflow-hidden.ps-5.pt-5.h-100:hover img {
  transform: 
    scale(1.05) 
    rotateX(5deg) 
    rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Enhanced 3D container */
.feature-img-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.feature-img-container img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

/* Glow effect on hover */
.feature-img-container:hover img {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 101, 47, 0.3);
}

/* Add this to your hover effect */
.feature-img-container:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,101,47,0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}






/* Facts Section - Text Animations */
.facts-overlay h1 {
  animation: fadeInUp 1s ease both;
}

.facts-overlay h4 {
  animation: fadeInUp 1s ease 0.2s both; /* Delayed start */
}

.facts-overlay p {
  animation: fadeInUp 1s ease 0.4s both;
}

.facts-overlay a {
  animation: fadeInUp 1s ease 0.6s both;
  display: inline-block;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zoom and Shake Effect */
.zoom-shake {
  transition: transform 0.3s ease;
  display: inline-block; /* For inline elements */
}

.zoom-shake:hover {
  animation: shake 0.5s ease infinite alternate;
  transform: scale(1.05);
}

@keyframes shake {
  0% { transform: scale(1.05) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-2deg); }
  50% { transform: scale(1.05) rotate(2deg); }
  75% { transform: scale(1.05) rotate(-1deg); }
  100% { transform: scale(1.05) rotate(1deg); }
}


/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/contact-hero.jpg') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-section h1 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.contact-hero-section .btn {
    transition: all 0.3s ease;
}

.contact-hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Emergency Contact Section */
.emergency-contact-section {
    background-color: #d9534f !important;
    padding: 40px 0;
}

.emergency-contact-section h2 {
    font-weight: 700;
}

.emergency-contact-section .btn-light {
    background-color: white;
    color: #d9534f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-contact-section .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.process-card h3 {
    color: #272727;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: #747474;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .emergency-contact-section .row {
        text-align: center;
    }
    
    .emergency-contact-section .col-lg-4 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 60vh;
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}


/* Add to your style.css */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.navbar-brand img {
  height: 40px; /* Adjust as needed */
  width: auto;
  transition: all 0.3s ease;
}

.navbar-brand h1 {
  font-size: 2.5rem;
  font-weight:700px;
  margin-bottom: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar-brand h1 {
    font-size: 1.5rem;
  }
  .navbar-brand img {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .navbar-brand h1 {
    font-size: 1.25rem;
  }
  .navbar-brand img {
    height: 30px;
  }
}


/* Footer Logo Styles */
.footer .d-flex.align-items-center {
  transition: all 0.3s ease;
}

.footer img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.footer h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Footer Logo Hover Effects */
.footer .d-flex.align-items-center:hover img {
  transform: scale(1.05);
}

.footer .d-flex.align-items-center:hover h1 {
  transform: scale(1.02);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer h1 {
    font-size: 1.5rem;
  }
  .footer img {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .footer h1 {
    font-size: 1.25rem;
  }
  .footer img {
    height: 30px;
  }
}




/* Floating Contact Button */
.floating-contact-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-contact-btn {
  width: 60px;
  height: 60px;
  background-color: #FF652F;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.floating-contact-btn:hover {
  background-color: #e05525;
  transform: scale(1.1);
}

.floating-contact-btn.active {
  transform: rotate(45deg) scale(1.1);
  background-color: #e05525;
}

.floating-contact-menu {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 80px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.floating-contact-menu.active .floating-contact-item {
  transform: scale(1);
}

.floating-contact-item.whatsapp {
  background-color: #25D366;
  transition-delay: 0.1s;
}

.floating-contact-item.facebook {
  background-color: #0084FF;
  transition-delay: 0.2s;
}

.floating-contact-item.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transition-delay: 0.3s;
}

.floating-contact-item.twitter {
  background-color: #1DA1F2;
  transition-delay: 0.4s;
}

.floating-contact-item:hover {
  transform: scale(1.1) !important;
}

/* Tooltip */
.floating-contact-item::after {
  content: attr(title);
  position: absolute;
  right: 60px;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.floating-contact-item:hover::after {
  opacity: 1;
}




/* AI Chatbot Widget */
.ai-chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

/* Chatbot Button */
.ai-chatbot-btn {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FF652F 0%, #e05525 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 25px rgba(255, 101, 47, 0.4);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Pulsing Animation */
.ai-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 101, 47, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0;
}

.ai-pulse.delay-1 {
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

/* Chat Window */
.ai-chatbot-window {
  position: absolute;
  bottom: 90px;
  right: 0;
  width: 350px;
  max-height: 500px;
  background: rgba(39, 39, 39, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}

.ai-chatbot-container.active .ai-chatbot-window {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Chat Header */
.ai-chatbot-header {
  padding: 15px 20px;
  background: rgba(255, 101, 47, 0.1);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ai-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF652F 0%, #e05525 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
}

.ai-chatbot-header h3 {
  color: white;
  font-size: 16px;
  margin: 0;
  flex-grow: 1;
  font-weight: 600;
}

.ai-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

/* Messages Area */
.ai-chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ai-message {
  max-width: 80%;
  padding: 12px 15px;
  border-radius: 18px;
  position: relative;
  animation: messageIn 0.3s ease-out;
  font-size: 14px;
  line-height: 1.4;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.1);
  color: white;
  border-bottom-left-radius: 5px;
}

.ai-user {
  align-self: flex-end;
  background: #FF652F;
  color: white;
  border-bottom-right-radius: 5px;
}

.ai-message-time {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
  text-align: right;
}

/* Input Area */
.ai-chatbot-input {
  display: flex;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ai-input-field {
  flex-grow: 1;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.ai-send-btn {
  width: 45px;
  height: 45px;
  background: #FF652F;
  border: none;
  border-radius: 50%;
  color: white;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Media Icons */
.ai-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.ai-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ai-social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Platform specific colors */
.ai-social-icon.whatsapp { background-color: #25D366; }
.ai-social-icon.facebook { background-color: #1877F2; }
.ai-social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ai-social-icon.twitter { background-color: #1DA1F2; }
.ai-social-icon.email { background-color: #747474; }

/* Add these styles to your existing CSS */
.initial-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.initial-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.initial-social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Platform colors */
.initial-social-icon.whatsapp { background-color: #25D366; }
.initial-social-icon.facebook { background-color: #1877F2; }
.initial-social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.initial-social-icon.twitter { background-color: #1DA1F2; }
.initial-social-icon.phone { background-color: #FF652F; }





.x-icon {
    color: #FF652F;
    transition: all 0.3s ease;
}

.social-icon:hover .x-icon {
    color: white !important;
}


/* ===== Social Icons Hover Effect (Applies to ALL social icons) ===== */
/* Header (Topbar) & Footer Icons */
.social-icon:hover,
.footer .btn.btn-square:hover,
.footer .btn.btn-link:hover {
    background-color: #FF652F !important; /* Orange background on hover */
    border-color: #FF652F !important;
}

/* Icon color change on hover */
.social-icon:hover i,
.footer .btn.btn-square:hover i,
.footer .btn.btn-link:hover i {
    color: white !important; /* White icon on hover */
}

/* Smooth transition */
.social-icon,
.footer .btn.btn-square,
.footer .btn.btn-link,
.social-icon i,
.footer .btn.btn-square i,
.footer .btn.btn-link i {
    transition: all 0.3s ease;
}

/* Make X (Twitter) icon bolder */
.fa-x-twitter {
    font-weight: 900;
}

.btn {
    pointer-events: auto !important;
}





    /* Horizontal Ticker Styles - Enhanced */
    .ticker-container {
        background-color: #182333 ; 
        color: white;
        padding: 15px 0;
        overflow: hidden;
        border-top: 1px solid #FF652F; /* Orange accent */
        border-bottom: 1px solid #FF652F;
        position: relative;
    }
    
    .ticker-wrapper {
        display: flex;
        width: 100%;
    }
    
    .ticker {
        display: flex;
        align-items: center;
        white-space: nowrap;
        animation: ticker 30s linear infinite;
        will-change: transform;
    }
    
    .ticker:hover {
        animation-play-state: paused;
    }
    
    .ticker-item {
        display: flex;
        align-items: center;
        margin-right: 40px;
        font-size: 16px;
        height: 50px; /* Fixed height */
        padding: 0 15px;
        flex-shrink: 0; /* Prevent items from shrinking */
    }
    
    .ticker-icon {
        color: #FF652F; /* Orange accent */
        margin-right: 15px;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .ticker-image {
        height: 40px; /* Increased image height */
        width: auto;
        margin-right: 15px;
        border-radius: 4px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .ticker-text {
        white-space: nowrap;
        font-weight: 500;
        color: white;
    }
    
    /* Gradient fade effect on sides */
    .ticker-container::before,
    .ticker-container::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
    }
    
    .ticker-container::before {
        left: 0;
        background: linear-gradient(90deg, #272727 0%, rgba(39, 39, 39, 0) 100%);
    }
    
    .ticker-container::after {
        right: 0;
        background: linear-gradient(270deg, #272727 0%, rgba(39, 39, 39, 0) 100%);
    }
    
    @keyframes ticker {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%); /* Only translate half way since we duplicated content */
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .ticker-item {
            height: 40px;
            margin-right: 30px;
            font-size: 14px;
        }
        
        .ticker-icon {
            font-size: 20px;
            margin-right: 10px;
        }
        
        .ticker-image {
            height: 30px;
        }
    }
	
	
	
	
	    
		
		/* WhatsApp Button - Optimized */
.whatsapp-btn {
    background-color: #25D366 !important;
    color: #f1f1f1 !important;
    font-weight: 600; /* Slightly lighter than bold */
    font-size: 0.9rem !important; /* Responsive size */
    padding: 0.4rem 0.8rem !important; /* Smaller padding */
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    border: none;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.whatsapp-btn i {
    font-size: 1rem;
    margin-right: 0.4rem;
    transition: all 0.3s ease;
}

/* Hover Effects */
.whatsapp-btn:hover {
    background-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.whatsapp-btn:hover i {
    animation: whatsapp-pulse 0.8s infinite, whatsapp-shake 0.5s infinite;
}

/* Animations */
@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes whatsapp-shake {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-btn {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    .whatsapp-btn i {
        font-size: 0.9rem;
    }
}


/* Mobile Center Alignment for Slider Buttons */
@media (max-width: 768px) {
    /* Target all carousel buttons containers */
    .carousel-caption .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Make buttons full width on mobile */
    .carousel-caption .btn {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
    
    /* Specific WhatsApp button in sliders */
    .carousel-caption .btn-outline-light {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



/* ===== Mobile Optimizations ===== */
@media (max-width: 768px) {
    /* Carousel Buttons */
    .carousel-caption .d-flex {
        gap: 8px; /* Reduced from 12px */
    }
    
    .carousel-caption .btn {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Carousel Arrows */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* AI Chatbot */
    .ai-chatbot-container {
        bottom: 20px;
        right: 20px;
    }
    
    .ai-chatbot-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .ai-chatbot-window {
        width: 90vw;
        max-width: 320px;
        bottom: 80px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    
    /* Button text padding reduction */
    .btn i.fa-brands, 
    .btn i.fas {
        margin-right: 0.3rem; /* Reduced from 0.5rem */
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .carousel-caption .btn {
        padding: 0.4rem 0.7rem !important;
        font-size: 0.8rem !important;
    }
    
    .ai-chatbot-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===== AI Chatbot Centering for Mobile ===== */
@media (max-width: 768px) {
    .ai-chatbot-container {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
    }
    
    .ai-chatbot-btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ai-chatbot-window {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        max-width: 320px;
    }
    
    /* Animation adjustments */
    .ai-chatbot-container.active .ai-chatbot-window {
        transform: translateX(-50%) scale(1);
    }
}

@media (max-width: 400px) {
    .ai-chatbot-window {
        width: 95vw;
        max-width: none;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .ai-chatbot-container {
        bottom: 10px;
    }
    .ai-chatbot-window {
        bottom: 70px;
    }
}





/* ===== Mobile Responsive Topbar & Menu ===== */
@media (max-width: 991.98px) {
    /* Topbar adjustments */
    .bg-dark.py-2.d-none.d-md-flex {
        display: none !important; /* Hide topbar completely on mobile */
    }

    /* Navbar adjustments */
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-brand h1 {
        font-size: 1.5rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    /* Mobile menu button */
    .navbar-toggler {
        padding: 0.25rem;
        border: 1px solid rgba(255,101,47,0.5);
    }

    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }

    /* Collapsible menu */
    .navbar-collapse {
        background-color: #272727;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,101,47,0.1);
        padding: 0.5rem 0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 1rem;
    }

    /* WhatsApp button in menu */
    .whatsapp-nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        order: 1; /* Move to bottom of mobile menu */
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .navbar-brand h1 {
        font-size: 1.25rem;
    }

    .navbar-brand img {
        height: 30px;
    }

    .nav-link {
        font-size: 0.9rem !important;
    }
}

/* Special case for logo text */
@media (max-width: 400px) {
    .navbar-brand h1 {
        font-size: 1.1rem;
    }
}




/* ===== Ultra-Premium Modal Styles ===== */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.email-modal-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,101,47,0.15) 0%, rgba(39,39,39,0.9) 80%);
    z-index: -1;
}

.email-modal-content {
    width: 90%;
    max-width: 480px;
    margin: 10vh auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 101, 47, 0.15);
    transform: perspective(1000px) rotateX(5deg) translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}

.email-modal.show .email-modal-content {
    transform: perspective(1000px) rotateX(0) translateY(0);
    opacity: 1;
}

/* Header Styles */
.email-modal-header {
    padding: 28px;
    background: linear-gradient(135deg, #ff652f, #ff652f);
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.modal-header-icon {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #FFFFFF;
}

.email-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    flex-grow: 1;
    letter-spacing: 0.3px;
	color:#ffffff;
}

.email-modal-close {
    background: rgba(255,255,255,0.12);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Full-Width Button Styles */
.provider-btn {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 20px 15px;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.03);
}

.provider-logo {
    width: 35px;
    height: 32px;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.provider-logo img {
    max-width: 100%;
    max-height: 100%;
}

.provider-logo i {
    font-size: 24px;
}

.provider-text {
    font-size: 1.1rem;
    font-weight: 500;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
    opacity: 0;
    transition: all 0.4s ease;
}

/* Individual Button Styles */
.gmail-btn {
    background: white;
    color: #5F6368;
    border: 1px solid #DADCE0;
}

.gmail-btn:hover {
    background: #F8F9FA;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.2);
}

.outlook-btn {
    background: white;
    color: #0072C6;
    border: 1px solid #D3E3F2;
}

.outlook-btn:hover {
    background: #F2F8FD;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 114, 198, 0.2);
}

.yahoo-btn {
    background: white;
    color: #720E9E;
    border: 1px solid #E8D5F0;
}

.yahoo-btn:hover {
    background: #F9F2FC;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(114, 14, 158, 0.2);
}

.default-btn {
    background: white;
    color: #4A4A4A;
    border: 1px solid #E0E0E0;
}

.default-btn:hover {
    background: #FAFAFA;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.provider-btn:hover {
    border-color: transparent;
}

.provider-btn:hover .hover-effect {
    opacity: 1;
}

.provider-btn:hover .provider-logo {
    transform: scale(1.1);
}

.provider-btn:hover .provider-text {
    transform: translateX(5px);
}

/* Active State */
.provider-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .email-modal-content {
        width: 95%;
        margin: 5vh auto;
    }
    
    .provider-btn {
        padding: 16px 20px;
    }
    
    .provider-logo {
        margin-right: 15px;
    }
}
.infographic-wrapper {
  /* 3background: linear-gradient(to bottom right, #0f172a, #1e293b); D dark background */
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  color:white;
}

/* Central vertical line */
.infographic-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  /* background: #FF934F; */
  transform: translateX(-50%);
  z-index: 1;
}

/* Dot Points */
.circle-point {
  width: 18px;
  height: 18px;
  /*background-color: #FF934F; */
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Left and Right Steps */
.infographic-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

.infographic-item.left {
  justify-content: flex-start;
}

.infographic-item.right {
  justify-content: flex-end;
}

/* Info Box Style */
.info-box {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  width: 80%;
  border-left: 4px solid #FF934F;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.info-box:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* Adjust dot vertical positions */
.infographic-item:nth-child(1) .circle-point { top: 20px; }
.infographic-item:nth-child(2) .circle-point { top: 120px; }
.infographic-item:nth-child(3) .circle-point { top: 220px; }
.infographic-item:nth-child(4) .circle-point { top: 320px; }
.infographic-item:nth-child(5) .circle-point { top: 420px; }

@media (max-width: 768px) {
  .infographic-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .infographic-item.right {
    align-items: flex-end;
  }

  .info-box {
    width: 100%;
  }

  .infographic-line {
    left: 20px;
  }

  .circle-point {
    left: 20px;
  }
}
