/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.4); /* Transparent */
    backdrop-filter: blur(10px);   /* Frosted glass effect */
    color: #fff;
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  
/* Slide-in animation */
@keyframes slideInTop {
    0% {
        top: -80px; /* Start above the screen */
    }
    100% {
        top: 0; /* End at the normal position */
    }
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;  /* Adjust logo size */
    width: auto;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.get-started {
    background: #FF3D00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('HOME.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin-top: 80px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.tag {
    font-size: 14px;
    text-transform: uppercase;
    color: #FF3D00;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary {
    background: #FF3D00;
    color: #fff;
    margin-right: 10px;
}

.primary:hover {
    background: #e63600;
}

.secondary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.secondary:hover {
    background: transparent;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        height: 35px;  /* Adjust logo size for mobile */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
.nav-links a {
    color: #fff;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.contact-option {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background: #FF3D00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-option:hover {
    background: #e63600;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}


/* =========================================================================================About sectio */
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.about-us {
    background: url('HOME.webp') no-repeat center center/cover;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* About Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: slideInLeft 1s ease-out forwards; /* Slide-in from left */
}

.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-box img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-content {
    flex: 1;
    animation: slideInRight 1s ease-out forwards; /* Slide-in from right */
}

.intro {
    color: #ff3d00;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Services Section */
.about-services {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    max-width: 500px;
    opacity: 0; /* Initially invisible */
    transform: translateX(-100%); /* Slide from the left */
    animation: slideInUp 0.8s ease-in-out forwards;
}

.service:hover {
    transform: translateY(-5px);
}

.icon img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.service h3 {
    font-size: 18px;
    font-weight: 600;
}

.service p {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-images, .about-content {
        width: 100%;
    }
    .about-services {
        flex-direction: column;
    }
}

.about-us {
    background: url('background.jpg') center/cover no-repeat;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1200px;
    padding: 0 20px;
}

.about-image img {
    width: 80%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 36px;
    color: #ff3d00;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.service {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 45%;
    opacity: 0; /* Initially invisible */
    transform: translateX(100%); /* Slide from the right */
    animation: slideInLeft 1s ease-out forwards;
}

.service:hover {
    transform: translateY(-5px);
}

.icon img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.quote-box {
    background: #0a0a0a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
}

.quote-box:hover {
    transform: scale(1.02);
}

.quote-box .btn {
    display: inline-block;
    background: #ff3d00;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease-in-out;
    margin-top: 10px;
}

.quote-box .btn:hover {
    background: #e63600;
}

/* Media Query Adjustments */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .service {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        width: 100%;
    }
}

/* Keyframe Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* =========================================================================================what we do */
/* General Styles */
.process-section {
    background: #f8f9fc;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.subheading {
    color: #ff6600;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Card Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    width: 100%;
    height: 400px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Content */
.card h3 {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    width: 80%;
    transition: opacity 0.3s ease-in-out;
}

.card p {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Hover Effect */
.card:hover h3 {
    opacity: 0;
}

.card:hover p {
    opacity: 1;
}

/* Mobile View Fix - Same Behavior as PC */
@media (max-width: 768px) {
    .heading {
        font-size: 28px;
    }

    .description {
        font-size: 14px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .card {
        height: 400px; /* Keep the height same as PC */
    }

    .card img {
        height: 100%;
    }

    .card h3 {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        font-size: 16px;
        opacity: 1;
    }

    .card p {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        font-size: 12px;
        opacity: 0;
    }

    .card:hover h3 {
        opacity: 0;
    }

    .card:hover p {
        opacity: 1;
    }
}


/* =========================================================================================our services */
.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 45%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    text-align: center;
    padding: 20px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.quote-icon {
    font-size: 30px;
    color: #ff5722;
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin: 5px 0;
}

.testimonial-role {
    font-size: 14px;
    color: #ff5722;
    font-weight: bold;
}

.rating {
    font-size: 18px;
    color: gold;
    margin-top: 5px;
}

.btn {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 90%;
    }
}




/* =========================================================================================Footer*/

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}
h2 {
    font-size: 22px;
    font-weight: bold;
}
.sub-text {
    font-size: 14px;
    color: gray;
    margin-bottom: 20px;
}
label {
    display: block;
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
}
input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.phone-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
}
.flag {
    width: 20px;
    margin-right: 5px;
}
.optional {
    margin-left: auto;
    font-size: 12px;
    color: gray;
}
.submit-btn {
    width: 100%;
    background: linear-gradient(to right, #e64a19, #e64a19, #e64a19,#e64a19 );
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    opacity: 0.8;
}
.privacy-text {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}
/* =========================================================================================Footer*/
/* General Footer Styling */
.footer {
    background-color: #0A0E22;
    color: white;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Left Side - About Section */
.footer-about {
    width: 30%;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #377DFF;
}

.footer-text {
    font-size: 14px;
    margin: 15px 0;
    color: #B0B3C2;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    color: #FF3D00;
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Right Side - Links */
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 65%;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #B0B3C2;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #377DFF;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #B0B3C2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-about {
        text-align: center;
        width: 100%;
    }

    .footer-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-column {
        width: 45%;
        margin: 20px 0;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-column {
        width: 100%;
    }
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Root Variables */
:root {
    --primary-color: #FF3D00;
    --secondary-color: #0A0E22;
    --light-gray: #f8f9fc;
    --dark-gray: #555;
    --text-dark: #000;
    --text-light: #B0B3C2;
    --transition: 0.3s ease-in-out;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    
    
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

/* Logo */
.logo {
    height: 40px;
    width: auto;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

/* Get Started Button */
.get-started {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}
/* Logo and links stay white initially */
nav .logo, nav ul li a {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  /* Scrolled navbar style */
  nav.scrolled {
    background: #fff;
    backdrop-filter: none;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Change logo and links to dark when scrolled */
  nav.scrolled .logo,
  nav.scrolled ul li a {
    color: #000;
  }



  /* Orange text with white border using text-shadow */
nav .logo,
nav ul li a {
  color: #e63600;
  text-shadow: 
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Scrolled navbar: white background and black text */
nav.scrolled {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scrolled nav text: black with no text-shadow */
nav.scrolled .logo,
nav.scrolled ul li a {
  color: #000;
  text-shadow: none;
}

.get-started:hover {
    background: #e63600;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('HOME.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin-top: 80px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 20px;
}

/* Button Styles */
.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn.primary {
    background: var(--primary-color);
    color: #fff;
    margin-right: 10px;
}

.btn.primary:hover {
    background: #e63600;
}

.btn.secondary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn.secondary:hover {
    background: transparent;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        height: 35px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Footer About */
.footer-about {
    width: 30%;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #377DFF;
}

.footer-text {
    font-size: 14px;
    margin: 15px 0;
    color: var(--text-light);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 65%;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: #377DFF;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-about {
        text-align: center;
        width: 100%;
    }

    .footer-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-column {
        width: 45%;
        margin: 20px 0;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-column {
        width: 100%;
    }
}
.highlight-step {
    background-color: #ff5733 !important;
    color: #fff !important;
}

.social-hover {
    color: #fff !important;
}




/* General transition settings for all slide-in animations */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Applying these animations to specific sections */

/* For left slide-in */
.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

/* For right slide-in */
.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

/* For top slide-in */
.slide-in-top {
    animation: slideInTop 1s ease-out forwards;
}

/* For bottom slide-in */
.slide-in-bottom {
    animation: slideInBottom 1s ease-out forwards;
}

/* Optionally, you can delay some of the animations for better visual impact */
#about-us {
    animation-delay: 0.5s;
}

#services {
    animation-delay: 1s;
}

#testimonials {
    animation-delay: 1.5s;
}

footer {
    animation-delay: 2s;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 48px;
    height: 48px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}



/* From Uiverse.io by Cornerstone-04 */ 
.box {
    width: 140px;
    height: auto;
    float: left;
    transition: .5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px 24px;
    text-align: center;
    margin: 0 5px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 900;
  }
  
  .box:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
  }
  
  .box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    padding: 12px 24px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
  }
  
  .box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  
  .box:hover:before {
    border-color:#e63600;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .3s;
  }
  
  .box:hover:after {
    border-color: #e63600;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .5s;
  }
  
  button {
    padding: 12px 24px;
    color: #e63600;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
  }