* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* hides unwanted horizontal scroll */
    width: 100%;
  }
  

.background-blue {
    background: linear-gradient(to right bottom, #000000, #003f7d);
    /* width: 100%; */
}

.navbar {
    margin-bottom: 30px !important;
    padding: 10px 20px !important;
}

.navbar-brand {
    font-weight: bold !important;
    color: white;
    display: flex;
    align-items: center !important;
    margin-left: 30px !important;
    margin-right: 40px !important;
}

.navbar-brand span {
    margin-top: 5px;
    color: white;
    font-size: 25px;
    align-items: center;
}
/* 
@media (max-width:576px) {
    .navbar-toggler-icon {
        font-size: 40px;
        margin-left: 500px;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-phone {
        margin-left: 340px !important;
    }
}

@media (max-width:768px) {
    .navbar-toggler-icon {
        font-size: 40px;
        margin-left: 500px;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-phone {
        margin-left: 340px !important;
    }
}

@media (max-width:1024px) {
    .navbar-toggler-icon {
        font-size: 40px;
        margin-left: 500px;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-phone {
        margin-left: 50px;
    }
}
*/
@media (max-width:1024px) {

    .navbar-brand span,
    .ue-logo {
        margin-bottom: 30px !important;
    }

    .navbar-toggler-icon {
        filter: invert(100%) brightness(200%);
    }
} 

.navbar-brand img {
    height: 45px;
    width: 45px;
    margin-right: 8px !important;
}

.nav-link {
    color: white !important;
    font-size: 17px !important;
    font-family: 'Inter', sans-serif;
}

.navbar-nav .nav-item {
    margin-right: 15px !important;
    /* Adjust as needed */
}

.nav-link.active {
    font-weight: bold;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Smooth transition */
.dropdown-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}

.btn-phone {
    /* background-color: black; */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* Subtle white border */
    border-radius: 50px;
    padding: 12px 24px;
    height: 55px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    /* Slightly bigger text */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn-phone i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-phone::before {
    content: "";
    position: absolute;
    inset: 0px;
    /* Ensures border doesn't overlap */
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-phone:hover {
    background-color: #FFD700;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}


.hero-section {
    padding: 80px 0;

}

.text-light {
    color: white;
}

/* ======= TEXT STYLES ======= */
.welcome-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-title {
    color: white;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.underline-text {
    position: relative;
    display: inline-block;
}

.underline-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 5px;
    background-color: blue;
    animation: underline-animation 3s ease-in-out forwards;
}

/* Keyframes for left-to-right animation */
@keyframes underline-animation {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}



.hero-description {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
}

/* ======= BUTTON STYLES ======= */
.btn-yellow {
    background-color: #FFD700;
    color: black;
    font-weight: bold;
    padding: 12px 24px;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease-in-out;
    border-radius: 50px !important;
    display: inline-block;
}

.btn-yellow:hover {
    background: linear-gradient(to right, #E6AC00, #FFD700);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.6);
}

.btn-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 1.2rem;
    padding-bottom: 5px;
    margin-left: 30px;
}

.btn-link i {
    margin-left: 10px;
}

/* Always visible underline */
.btn-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    /* Adjust color */
    position: absolute;
    bottom: 0;
    left: 0;
}

.btn-link:hover {
    color: #c7aa05;
}

.btn-link:hover::after {
    background-color: #c7aa05;
    /* Change underline color on hover */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
        /* Start from 50px below */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Move to original position */
    }
}

.animated-text {
    animation: slideUp 3s ease-out;
}



.robot-img {
    width: 630px;
    max-width: 800px;
    position: relative;
}

@media (max-width:768px) {
    .robot-img {
        width: 400px;
    }
}

.badge {
    position: absolute;
    padding: 30px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 120px;
    width: 200px;
    border: 1px solid rgb(79, 79, 79);
}

.badge .big-text {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.badge p {
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

.experience {
    top: 0%;
    right: 3%;
}

.award {
    bottom: 12%;
    left: 15%;
}

/* Responsive Design */
/* @media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .robot-img {
        width: 100%;
    }

    .badge {
        padding: 10px 20px;
    }
}

@media (max-width:768px) {
    .robot-img {
        width: 200px;
        height: auto;
    }

    .badge {
        width: 150px;
        height: 100px;
        display: flex;
        align-items: center;
    }

    .badge .big-text {
        font-size: 20px;
    }
} */

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(to right, #001f4d, #003f7d);
    padding: 40px 0;
    position: relative;
}

.logo-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: slideLeft 20s linear infinite;
    /* slower for smoother scroll */
}

.logo-item-wrapper {
    display: flex;
    flex-direction: column;
    /* stack image above text */
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0 40px;
    /* spacing between items */
    text-align: center;
    min-width: 120px;
    /* ensures consistent size */
}

.logo-item,
.logo-item6 {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
    /* space between image and text */
    object-fit: contain;
}

.logo-item-wrapper span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.custom-card {
    background: #F5F9FF;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    margin: auto;
    margin-top: 50px;
    border-radius: 40px;
}

.custom-card-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Image Section */
.custom-card-image {
    position: relative;
    max-width: 650px;
    border-radius: 15px;
    overflow: hidden;
}

.custom-card-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 24px;
    color: black;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
}

/* Text Section */
.custom-card-text {
    max-width: 500px;
    margin-left: 30px;
}

@media (max-width: 1024px) {
    .custom-card-content {
      gap: 20px;
      flex-direction: column; /* Stack image and text vertically */
      align-items: center;
    }
  
    .custom-card-image {
      max-width: 500px; /* Make image smaller */
    }
  
    .custom-card-text {
      max-width: 100%;
      margin-left: 0; /* Remove margin to center text */
    }
  
    .custom-card-text h2 {
      font-size: 30px;
    }
  
    .custom-card-text p {
      font-size: 18px;
    }
  
    .features-list {
      grid-template-columns: 1fr; /* Stack features vertically */
    }
  
    .about-link {
      font-size: 16px;
    }
  }
  
  /* For screens smaller than 768px (mobile devices) */
  @media (max-width: 768px) {
    .custom-card {
      padding: 20px;
    }
  
    .custom-card-text h2 {
      font-size: 26px;
    }
  
    .custom-card-text p {
      font-size: 16px;
    }
  
    .feature-item {
      font-size: 16px;
    }
  
    .about-link {
      font-size: 14px;
    }
  
    .play-button {
      width: 50px;
      height: 50px;
    }
  }

.custom-card-text h2 {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.custom-card-text p {
    color: #616060;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Feature List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.feature-item {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
}

.feature-item i {
    color: blue;
    font-size: 20px;
}

/* About Us Link */
.about-link {
    display: inline-block;
    font-weight: bold;
    color: black;
    margin-top: 25px;
    text-decoration: none;
    border-bottom: 2px solid black;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #c7aa05;
    border-bottom: 2px solid #c7aa05;
}


.choose {
    margin-top: 150px;
    margin-left: 100px;
}

.why-choose-us {
    font-size: 22px;
    font-weight: bold;
    color: #0056D2;
    /* Blue color */
}

.description {
    margin-top: 30px;
    font-size: 30px;
    font-weight: 300;
    color: #5A6980;
    line-height: 40px;
    margin-right: 100px;
}

.description strong {
    font-weight: 700;
    color: black;
    /* Bold black for emphasis */
}
@media (max-width: 1024px) {
    .choose {
        margin-left: 30px; /* Reduce left margin on smaller screens */
    }

    .why-choose-us {
        font-size: 20px;
    }

    .description {
        font-size: 24px;
        line-height: 32px;
        margin-right: 20px !important;
    }
}

/* For screens smaller than 768px (mobile devices) */
@media (max-width: 768px) {
    .choose {
        margin-top: 80px; /* Reduce top margin for mobile */
        margin-left: 20px; /* Adjust left margin for mobile */
    }

    .why-choose-us {
        font-size: 18px;
        text-align: center; /* Center title for mobile */
    }

    .description {
        font-size: 18px;
        line-height: 28px;
        margin-right: 0; /* Remove right margin */
        text-align: justify; /* Center description text */
    }
}

.services {
    text-align: center;
}

/* @media (max-width:576px) {
    .row {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .custom-card-service1 {
        width: 500px !important;
        height: 500px !important;
    }

    .custom-card-service3 {
        width: 400px !important;
        height: 350px !important;
    }

    .custom-card-service5 {
        width: 400px !important;
        height: 300px !important;
    }
}

@media (max-width:768px) {
    .container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .custom-card-service1 {
        width: 500px !important;
        height: 500px !important;
    }

    .custom-card-service3 {
        width: 400px !important;
        height: 350px !important;
    }

    .custom-card-service5 {
        width: 400px !important;
        height: 300px !important;
    }
}

@media (max-width: 1024px) {

    .custom-card-service1,
    .custom-card-service5 {
        width: 350px !important;
        height: 350px !important;
    }

    .custom-card-service3 {
        width: 350px !important;
        height: 300px !important;
    }

    .custom-card-service5 {
        width: 350px !important;
        height: 250px !important;
    }

    .card-title,
    .card-title3,
    .card-title4,
    .card-title5 {
        font-size: 30px !important;
    }

    .custom-card-service2 {
        width: 350px !important;
        height: 400px !important;
        margin-left: 0px !important;
    }

    .custom-card-service4 {
        width: 350px !important;
        height: 370px !important;
        margin-left: 0px !important;
    }
} */
/* General Styling for Services */
.services {
    text-align: center;
}

.custom-card-service1, 
.custom-card-service2, 
.custom-card-service3, 
.custom-card-service4, 
.custom-card-service5 {
    background: linear-gradient(to right bottom, #000000, #003f7d);
    border: none;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card-title,
.card-title2,
.card-title3,
.card-title4,
.card-title5 {
    font-weight: 600;
    text-align: left;
}

.bi {
    font-size: 40px;
    display: block;
    text-align: left;
}

/* Card Sizes */
.custom-card-service1 { width: 800px; height: 300px; }
.custom-card-service2 { width: 500px; height: 300px; margin-left: 150px; }
.custom-card-service3 { width: 500px; height: 250px; }
.custom-card-service4 { width: 800px; height: 250px; margin-left: -150px; }
.custom-card-service5 { width: 600px; height: 200px; }

/* Card Title Font Sizes */
.card-title { font-size: 42px; }
.card-title2, .card-title3 { font-size: 30px; }
.card-title4, .card-title5 { font-size: 42px; }

/* Service Description Font Size */
.service2-p, .service3-p {
    text-align: justify;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Service Container Background */
.service-container {
    background-color: black;
    margin-top: 100px;
}

/* Hover Effect */
.custom-card-service1:hover,
.custom-card-service2:hover,
.custom-card-service3:hover,
.custom-card-service4:hover,
.custom-card-service5:hover {
    transform: scale(0.95);
    background: linear-gradient(to right bottom, #003f7d, #023f85);
}

@media (min-width: 1025px) {
    .services {
        padding: 0 100px; /* Adds more spacing for larger screens */
    }

    .custom-card-service1, 
    .custom-card-service2, 
    .custom-card-service3, 
    .custom-card-service4, 
    .custom-card-service5 {
        width: 100%; 
        height: auto;
        margin: 10px;
    }

    .card-title {
        font-size: 48px; /* Larger font size for titles */
    }

    .card-title2, .card-title3 {
        font-size: 36px;
    }

    .card-title4, .card-title5 {
        font-size: 48px;
    }

    .service2-p, .service3-p {
        font-size: 22px;
    }
}

/* For screens smaller than 1024px (tablets) */
@media (max-width: 1024px) {
    .custom-card-service1, .custom-card-service4 {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .custom-card-service2, .custom-card-service3, .custom-card-service5 {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .card-title {
        font-size: 36px;
    }

    .card-title2, .card-title3 {
        font-size: 28px;
    }

    .card-title4, .card-title5 {
        font-size: 36px;
    }

    .service2-p, .service3-p {
        font-size: 18px;
    }
}

/* For screens smaller than 768px (mobile devices) */
@media (max-width: 768px) {
    .services {
        padding: 10px;
    }

    .custom-card-service1, 
    .custom-card-service2, 
    .custom-card-service3, 
    .custom-card-service4, 
    .custom-card-service5 {
        width: 100%;
        height: auto;
        margin: 10px 0;
    }

    .card-title {
        font-size: 28px;
    }

    .card-title2, .card-title3 {
        font-size: 24px;
    }

    .card-title4, .card-title5 {
        font-size: 28px;
    }

    .service2-p, .service3-p {
        font-size: 16px;
    }
}


/* Parallax Background */
.parallax-container {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url('../assets/parallex2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    /* This ensures the text stays centered */
}

/* Text Box */
.parallax-content {
    background: rgba(84, 84, 84, 0.7);
    padding: 20px 30px;
    color: white;
    max-width: 600px;
    font-family: Arial, sans-serif;
    margin-left: 50px;
    height: auto;
    margin-bottom: -50px;
    border-radius: 20px;
    text-align: left; /* Ensures text is aligned properly */
}

/* Heading */
.parallax-content h1 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}

/* Paragraph */
.parallax-content p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* For screens below 1024px (tablets, mobile) */
@media (max-width: 1024px) {
    .parallax-container {
        height: 50vh; /* Adjust height for smaller screens */
        padding-left: 3%; /* Decrease padding on the left */
    }

    .parallax-content {
        max-width: 90%; /* Use more width to fit smaller screens */
        margin-left: 20px; /* Decrease left margin */
        padding: 20px; /* Slightly reduce padding for small screens */
        margin-bottom: -40px; /* Adjust for better spacing */
    }

    .parallax-content h1 {
        font-size: 28px; /* Reduce heading font size for better readability */
    }

    .parallax-content p {
        font-size: 16px; /* Decrease paragraph font size */
    }
}

/* For screens between 768px and 1024px (small tablets) */
@media (max-width: 1024px) and (min-width: 768px) {
    .parallax-container {
        height: 55vh; /* Slightly adjust height for medium-size screens */
    }

    .parallax-content {
        max-width: 80%; /* Use slightly more width */
        padding: 25px; /* Adjust padding */
    }

    .parallax-content h1 {
        font-size: 30px; /* Set a readable font size */
    }

    .parallax-content p {
        font-size: 18px; /* Increase font size for better readability */
    }
}

/* For very small screens (phones) */
@media (max-width: 600px) {
    .parallax-container {
        height: 50vh; /* Reduce height for very small screens */
        padding-left: 5%; /* Minimal padding for small devices */
    }

    .parallax-content {
        max-width: 90%; /* Maximize width usage */
        margin-left: 10px; /* Decrease left margin */
        padding: 15px; /* Reduce padding for small screens */
        margin-bottom: -5px; /* Adjust bottom margin */
    }

    .parallax-content h1 {
        font-size: 24px; /* Smaller heading for small screens */
    }

    .parallax-content p {
        font-size: 14px; /* Smaller paragraph for compact devices */
    }
}

/* For very large screens (above 1400px) */
@media (min-width: 1400px) {
    .parallax-container {
        height: 85vh; /* Further increase height */
        padding-left: 12%;
    }

    .parallax-content {
        max-width: 800px; /* Further increase max-width */
        margin-left: 150px;
    }

    .parallax-content h1 {
        font-size: 50px; /* Large heading size for extra-large screens */
    }

    .parallax-content p {
        font-size: 24px; /* Increase paragraph size for better readability */
    }
}



.foo-bg{
    background: linear-gradient(to right bottom, #000000, #003f7d);

}
/* @media (max-width:768px) {
.foo{
    width: 1000px;
}
} */