/********** Template CSS **********/
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}



/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}



/* logo.......... */

/* Style the logo container */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

/* Style the logo image */
.navbar-brand img {
  height: 60px;       /* Adjust as needed */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Optional hover effect for logo link */
.navbar-brand:hover {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 45px;
  }
}


/* Custom styles for hero heading */
h1.display-1 {
    font-family: 'Poppins', sans-serif; /* Or another modern font */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4); /* Adds depth to white text */
    letter-spacing: 0.5px;
    line-height: 1.2;
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 0px;
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
    h1.display-1 {
        font-size: 2.5rem;
        text-align: center;
        padding: 10px;
    }
} */
 @media (max-width: 768px) {
    h1.display-1 {
        font-size: 2.5rem;
        text-align:left;
        padding: px;
    }
}

@media (min-width: 769px) {
    h1.display-1 {
        font-size: 3rem;
        text-align: left ;
    }
}




.display-5 {
  /* font-family: 'Poppins', sans-serif; */
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #02245b;           /* Dark blue-gray color */
  /* text-align: center; */
  letter-spacing: -0.5px;
}

.mb-4 {
  margin-bottom: 1.5rem;
}



@media (max-width: 768px) {
  .display-5 {
    font-size: 2.2rem;
  }
}




/* Contact Section Styles */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), #0056b3);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .form-control {
            border-radius: 8px;
            border: 2px solid #e9ecef;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        /* Testimonial Section Styles */
        .testimonial-section {
            padding: 80px 0;
            background: white;
        }

        .testimonial-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-img {
            position: relative;
            margin-bottom: 20px;
        }

        .testimonial-img img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border: 5px solid #f8f9fa;
        }

        .btn-square {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 10px;
            right: 50%;
            transform: translateX(50%);
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
        }

        .testimonial-text {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-top: 20px;
            border-left: 4px solid var(--primary-color);
        }

        .testimonial-text p {
            font-style: italic;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .testimonial-text h5 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .testimonial-text span {
            color: var(--primary-color);
            font-weight: 500;
        }

        /* Footer Styles */
        .footer_lyout__u9H3V {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
        }

        .footer_msl__nNcs6 {
            padding: 20px 0;
        }

        .footer_msl__expand__9p92p {
            display: none;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer_msl__expand__9p92p.footer_active__pIMP4 {
            display: flex;
        }

        .footer_logo__t_VOZ {
            z-index: 2;
        }

        .footer_watermark__zCi4l {
            position: absolute;
            right: 0;
            top: 0;
            opacity: 0.1;
        }

        .footer_link-cont__ZnQZf {
            padding: 40px 0;
        }

        .footer_links__HI7SD h4 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer_links__HI7SD a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
        }

        .footer_links__HI7SD a:hover {
            color: var(--primary-color);
            padding-left: 10px;
        }

        .footer_crf__4wGti {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cursor-pointer {
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-form {
                padding: 30px 20px;
            }
            
            .testimonial-item {
                margin: 10px 0;
            }
            
            .footer_link-cont__ZnQZf {
                flex-direction: column;
                gap: 30px;
            }
        }

        
        /* Animation Classes */
        .wow {
            visibility: hidden;
        }

        .fadeInUp {
            animation: fadeInUp 1s ease-in-out;
        }

        .fadeIn {
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }




        /* Orange Theme CSS - Modern & Professional */

/* Root Variables for Orange Color Scheme */
:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --light-orange: #ffa726;
    --dark-orange: #e65100;
    --orange-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --orange-gradient-hover: linear-gradient(135deg, #e65100 0%, #ff6b35 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-muted: #6c757d;
    --shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    --shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.25);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Section Styles */
.contact-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-section h2 {
    color: var(--dark-orange);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-section .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.form-label {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
    background-color: var(--white);
    outline: none;
}

.form-control:hover {
    border-color: var(--secondary-orange);
}

/* Custom Select Styling */
select.form-control {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom Button Styles */
.btn-primary-custom {
    background: var(--orange-gradient);
    border: none;
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    background: var(--orange-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
.footer_lyout__u9H3V {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #34495e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer_lyout__u9H3V::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
}

/* Most Searched Links Section */
.footer_msl__nNcs6 {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.footer_msl__nNcs6 .cursor-pointer {
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer_msl__nNcs6 .cursor-pointer:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.footer_msl__nNcs6 p {
    font-weight: 500;
    font-size: 1rem;
}

.footer_msl__nNcs6 svg {
    transition: transform 0.3s ease;
}

.footer_msl__expand__9p92p {
    padding: 15px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer_msl__expand__9p92p.footer_active__pIMP4 {
    max-height: 80px;
}

.footer_msl__expand__9p92p a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer_msl__expand__9p92p a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.footer_msl__expand__9p92p a:hover::before {
    left: 0;
}

.footer_msl__expand__9p92p a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Main Footer Content */
.footer_lyout__u9H3V main {
    padding: 40px 0;
}

.footer_logo__t_VOZ img {
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.footer_logo__t_VOZ img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.footer_watermark__zCi4l {
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.footer_watermark__zCi4l:hover {
    opacity: 0.2;
}

/* Footer Links */
.footer_links__HI7SD h4 {
    color: var(--light-orange);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer_links__HI7SD h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.footer_links__HI7SD a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
    position: relative;
    padding-left: 20px;
}

.footer_links__HI7SD a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer_links__HI7SD a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer_links__HI7SD a:hover {
    color: var(--light-orange);
    padding-left: 30px;
}

/* Footer Copyright */
.footer_crf__4wGti {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.footer_crf__4wGti p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer_crf__4wGti span {
    color: var(--light-orange);
    font-weight: 600;
}

/* Social Media Icons */
.footer_crf__4wGti ul li a {
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
}

.footer_crf__4wGti ul li a:hover {
    background: var(--orange-gradient);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer_crf__4wGti ul li a svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.footer_crf__4wGti ul li a:hover svg {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .footer_link-cont__ZnQZf {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_links__HI7SD {
        text-align: center;
    }
    
    .footer_crf__4wGti {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer_msl__expand__9p92p {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .btn-primary-custom {
        width: 100%;
        padding: 15px;
    }
    
    .footer_lyout__u9H3V main {
        padding: 20px 0;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll to Top Button */
.scroll-to-top {
    background: var(--orange-gradient);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top:hover {
    background: var(--orange-gradient-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Loading Animation */
.loading-spinner {
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background: var(--orange-gradient);
}

.border-orange {
    border-color: var(--primary-orange);
}

.shadow-orange {
    box-shadow: var(--shadow);
}

.shadow-orange-hover {
    box-shadow: var(--shadow-hover);
}



/* Footer logo */

.logo {
  max-width: 100%;
  height: auto;
}

.logo {
  width: 200px;
  height: 10px auto;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: block;
  float: left;
  margin: -20px auto 20px auto; /* Negative top margin pushes it up */
}

.logo {
  margin-top: -50px;
}





/* <!-- FAQs start  --> */

:root {
            --primary-color: #ff5e14;
            --secondary-color: #6c757d;
            --light-bg: #f8f9fa;
            --dark-bg: #343a40;
            --text-dark: #212529;
            --text-light: #6c757d;
            --border-color: #dee2e6;
        }


        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }



.faq-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header .section-tag {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            /* color: var(--text-dark); */
            color: #02245b(--text-dark);
            margin-bottom: 20px;
        }

        .faq-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 123, 255, 0.02);
        }

        .faq-question h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--secondary-color);
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 30px 30px;
            opacity: 1;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
            font-size: 1rem;
        }

        .search-box {
            position: relative;
            max-width: 500px;
            margin: 0 auto 50px auto;
        }

        .search-box input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .search-box i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: var(--text-light);
            display: none;
        }

        .no-results i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--border-color);
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .faq-header h2 {
                font-size: 2rem;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 25px 20px;
            }

            .faq-question h5 {
                font-size: 1rem;
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* <!-- FAQs end  --> */




        li::marker {
  color: #ff5e14; /* Change bullet color to red */
}








/* Mobile view navbar adjustments */
@media (max-width: 768px) {
    /* Navbar container */
    .navbar {
        padding: 5px 15px !important;
    }

    /* Logo adjustments */
    .navbar-brand {
        padding-left: 0 !important;
        margin-right: auto !important;
    }
    .navbar-brand img {
        max-width: 120px; /* smaller logo for mobile */
        height: auto;
    }

    /* Toggler button */
    .navbar-toggler {
        padding: 5px px;
        font-size: 1.2rem;
        border: none;
    }

    /* Collapse menu */
    .navbar-collapse {
        background: #fff; /* white background for dropdown menu */
        padding: 10px 0;
    }

    /* Menu links */
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 8px;
    }

    /* Dropdown styling */
    .navbar-nav .dropdown-menu {
        text-align: center;
        border: none;
        background: #f8f9fa;
    }
    .navbar-nav .dropdown-item {
        padding: 10px;
        font-size: 15px;
    }
}


/* Mobile view About section adjustments */
@media (max-width: 768px) {
    /* Stack columns vertically */
    .container-xxl .row {
        flex-direction: column;
    }

    /* Image styling */
    .container-xxl img.img-fluid {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    /* Heading size */
    .container-xxl h2 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: left;
    }

    /* Paragraph text */
    .container-xxl p {
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
    }

    /* Experience box */
    .container-xxl .d-flex.align-items-center {
        /* flex-direction: column; */
        text-align: center;
        
    }

    .container-xxl .flex-shrink-0.bg-primary {
        padding: 15px;
        margin-bottom: 10px;
    }

    .container-xxl h4.display-2 {
        font-size: 40px;
    }

    /* Button adjustments */
    .container-xxl .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* Mobile view adjustments */
@media (max-width: 768px) {
    .facts .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .facts .text-center {
        padding: 20px !important;
    }

    .facts i {
        font-size: 2rem; /* smaller icons */
        margin-bottom: 10px;
    }

    .facts h4 {
        font-size: 1.8rem; /* smaller number size */
    }

    .facts span {
        font-size: 1rem; /* smaller text */
        display: block;
        line-height: 1.4;
    }
}


@media (max-width: 768px) {
    .feature-img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    .display-5 {
        font-size: 22px;
    }
    p, h4, span {
        font-size: 0.95rem;
    }
    .btn-lg-square {
        width: 50px;
        height: 50px;
    }
    .d-flex {
        /* flex-direction: column !important; */
        align-items: left !important;
        text-align: left !important;
    }
}


/* Mobile only styles for service heading */
@media (max-width: 767px) {
    .service-main-heading {
        font-size: 22px !important;
        text-align: left !important;
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
.display-5{
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: left;
    }
}




/* Mobile view Project carousel adjustments */
@media (max-width: 768px) {
    /* Reduce padding for mobile */


    /* Carousel images */
    .project-item img.img-fluid {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Title styling for better readability */
    .project-title h5 {
        font-size: 14px;
        text-align: center;
    }

    /* Adjust carousel items to show 1 per view */
    .owl-carousel .project-item {
        margin: 0 5px;
    }

    /* If you want extra spacing between slides */
    .owl-carousel .owl-stage-outer {
        padding-left: 10px;
        padding-right: 10px;
    }


    
}



/* Mobile view adjustments only */
@media (max-width: 768px) {
    /* Reduce padding in the section */
    .contact-section {
        padding: 30px 15px;
    }

    /* Make all form controls full width and larger for touch */
    .contact-form .form-control,
    .contact-form select {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }

    /* Stack first/last name vertically instead of side-by-side */
    .contact-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Button full width for easier tapping */
    .contact-form .btn {
        width: 100%;
        font-size: 18px;
        padding: 14px;
    }

    /* Headings smaller for mobile readability */
    .contact-section h4 {
        font-size: 20px;
        line-height: 1.4;
    }

    .contact-section p {
        font-size: 14px;
        text-align: left;
    }


    @media (max-width: 767px) {
.display-5{
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: left;
    }
}

}

