/* @import "tailwindcss"; */



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

.nav-link {
    all: unset;
    color: #FF5E3A;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-link:hover {
    text-decoration: underline;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-logo {
        width: 60px;
    }
    .text-xl {
        font-size: 1rem;
    }
    .nav-btn {
        all: unset;
        color: #FF5E3A;
        font-size: 18px;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .header-logo {
        width: 40px;
        height: 40px;
    }

    .text-5xl {
        font-size: 2.5rem;
    }

    .px-10 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
header {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Reset button styles to remove default browser effects */
button {
    all: unset; /* Completely removes default button styling */
    color: #FF5E3A;
    font-size: 19px;
    cursor: pointer;
    display: inline-block;
}

/* Ensure only underline appears on hover */
button:hover {
    text-decoration: underline;
}

/* Remove focus outline and background */
button:focus,
button:active {
    outline: none;
    box-shadow: none;
    background: none;
}


/* Special case for the "Get in Touch" button (keep hover effect but remove focus box) */
.bg-red-500:focus,
.bg-red-500:active {
    outline: none !important;
    box-shadow: none !important;
}

     
       /* Custom Styles */
       .header-logo {
        width: 80px;
        height: auto;
    }

    /* Ensure header doesn't overlap content */
    body {
        padding-top: 100px;
    }

    /* Fix hero section spacing */
    section {
        margin-top: 0;
    }
    section {
        background-color: white !important;
      }


    /* Hover Effects */
    button:hover {
        transform: scale(1.05);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    img:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
        .flex.items-center.space-x-5 {
            flex-direction: column;
            text-align: center;
        }
        .header-logo {
            width: 60px;
        }
        .text-5xl {
            font-size: 2rem;
        }
    }

        .cursor-pointer {
            cursor: pointer;
        }
   
        .avatar {
            vertical-align: middle;
            width: 50px;
            height: 50px;
            border-radius: 50%;
          }
   /*get in touch*/     
  section.relative {
    background: #0c1c48 !important;
  }
   /*get in touch*/  
   /*testimonial*/
   /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


/* Section Styling */
.testimonial-section {
    padding: 50px 20px;
}

.testimonial-section h3 {
    color: #ff5722;
    font-weight: bold;
}

.testimonial-section h2 {
    color: #172b4d;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Testimonial Container */
.testimonial-container {
    position: relative;
    max-width: 500px;
    margin: auto;
    height: 220px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border: 2px solid #172b4d;
    display: block;
}

/* User Image */
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Text */
.testimonial-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* Name and Role */
.testimonial-name {
    color: #ff5722;
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonial-role {
    color: #172b4d;
    font-size: 1rem;
}

/* Dots */
.dots {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ff5722;
}

   /*testimonial ends*/
/*footer*

        .footer {
            display: flex;
            justify-content: space-between;
            padding: 50px;
            background-color: #0E1A3A;
        }

        .footer-column {
            flex: 1;
            padding: 0 20px;
        }

        .footer-column h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .footer-column h3::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            background: #FF5E3A;
            margin-top: 5px;
        }

        .footer-column p, .footer-column ul {
            font-size: 14px;
            color: #ddd;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin: 8px 0;
        }

        .career-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .career-item img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .subscribe input {
            width: 80%;
            padding: 10px;
            margin-top: 10px;
            border: none;
            border-radius: 5px;
        }

        .subscribe button {
            margin-top: 10px;
            padding: 10px 20px;
            border: none;
            background: #FF5E3A;
            color: white;
            cursor: pointer;
            border-radius: 5px;
        }

        .social-icons {
            display: flex;
            margin-top: 20px;
        }

        .social-icons img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            background: white;
            padding: 5px;
            border-radius: 5px;
        }
/*footer ends*/