/* ===================================
   ENSE ENGINEERING - PREMIUM STYLESHEET
=================================== */

/* ===================================
   VARIABLES
=================================== */

:root{
    --ense-blue: #0A2240;
    --ense-gold: #F4B400;
    --ense-light: #F8F9FA;
    --ense-dark: #212529;
    --ense-gray: #6C757D;
}

/* ===================================
   GENERAL STYLES
=================================== */

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--ense-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

img{
    max-width: 100%;
}

a{
    text-decoration: none;
}

/* ===================================
   HEADINGS
=================================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-weight: 700;
}

h2{
    color: var(--ense-blue);
    margin-bottom: 20px;
}

/* ===================================
   TOP BAR
=================================== */

.top-bar{
    background: linear-gradient(
        90deg,
        #02162D,
        var(--ense-blue)
    );

    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info{
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-info span{
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.top-bar a{
    color: white;
    transition: all 0.3s ease;
}

.social-link{
    font-size: 16px;
}

.social-link:hover{
    color: var(--ense-gold);
    transform: translateY(-2px);
}


/* ===================================
   NAVBAR
=================================== */

.navbar{
    z-index: 1030;
    transition: all 0.3s ease;
}

/* ===================================
   NAVBAR LOGO
=================================== */

.main-logo{
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.main-logo:hover{
    transform: scale(1.03);
}

.navbar-nav .nav-link{
    color: var(--ense-blue) !important;
    font-size: 14px;
    font-weight: 700;
    margin: 0 8px;
    padding: 8px 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover{
    color: var(--ense-gold) !important;
}

.nav-link.active{
    color: var(--ense-gold) !important;
    border-bottom: 3px solid var(--ense-gold);
}

.navbar .btn-warning{
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar .btn-warning:hover{
    transform: translateY(-2px);

    box-shadow:
    0 5px 15px rgba(0,0,0,0.2);
}

/* ===================================
   HERO CAROUSEL
=================================== */

.hero-slide{
    min-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}
.hero-bg{
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: heroZoom 7s ease-in-out forwards;

    z-index: 1;
}

.carousel-item.active .hero-bg{
    animation: heroZoom 7s ease-in-out forwards;
}

.hero-content{
    position: relative;
    z-index: 2;
}

@keyframes heroZoom{

    from{
        transform: scale(1);
    }

    to{
        transform: scale(1.08);
    }

}

@keyframes heroZoom{

    from{
        transform: scale(1);
    }

    to{
        transform: scale(1.08);
    }

}

.hero-content{
    max-width: 650px;
	 margin-top: -50px;
}

.hero-subtitle{
    color: var(--ense-gold);

    font-weight: 700;

    letter-spacing: 2px;

    display: block;

    margin-bottom: 20px;
}

.hero-content h1{
    font-size: 4rem;

    font-weight: 700;

    margin-bottom: 25px;
}

.hero-content p{
    font-size: 1.2rem;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons .btn{
    margin-right: 15px;
}

.carousel-control-prev,
.carousel-control-next{
    width: 50px;
    height: 50px;

    top: 50%;
    transform: translateY(-50%);

    background: rgba(255,255,255,0.15);

    border-radius: 50%;

    opacity: 1;
}

.carousel-control-prev{
    left: 25px;
}

.carousel-control-next{
    right: 25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover{
    background: var(--ense-gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 20px;
    height: 20px;
}

.carousel-indicators{
    bottom: 25px;
}

/* ===================================
   HERO SLIDER INDICATORS
=================================== */

.carousel-indicators{
    bottom: 25px;
}

.carousel-indicators button{
    width: 12px !important;
    height: 12px !important;

    border-radius: 50% !important;

    background-color: rgba(255,255,255,0.7) !important;

    border: none !important;

    margin: 0 6px !important;

    opacity: 1 !important;

    flex: 0 0 12px;
}

.carousel-indicators .active{
    background-color: var(--ense-gold) !important;
}

/* ===================================
   SECTIONS
=================================== */

section{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ===================================
   CARDS
=================================== */

.card{
    border: none;
    transition: all 0.3s ease;
}

.card:hover{
    transform: translateY(-5px);

    box-shadow:
    0 10px 20px rgba(0,0,0,0.15);
}

.card-img-top{
    height: 250px;
    object-fit: cover;
}

/* ===================================
   PROJECTS
=================================== */

.project-image{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ===================================
   GALLERY
=================================== */

.gallery-image{
    width: 100%;
    height: 300px;
    object-fit: cover;

    border-radius: 8px;

    transition: all 0.3s ease;
}

.gallery-image:hover{
    transform: scale(1.03);
    cursor: pointer;
}

/* ===================================
   FORMS
=================================== */

form input,
form textarea,
form select{
    border-radius: 8px;
}

form input:focus,
form textarea:focus,
form select:focus{
    box-shadow: none;
    border-color: var(--ense-gold);
}

/* ===================================
   BUTTONS
=================================== */

.btn-warning{
    background-color: var(--ense-gold);
    border-color: var(--ense-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover{
    opacity: 0.9;
}

.btn-primary{
    background-color: var(--ense-blue);
    border-color: var(--ense-blue);
}

.btn-primary:hover{
    opacity: 0.9;
}

/* ===================================
   TABLES
=================================== */

.table th{
    background-color: var(--ense-blue);
    color: white;
}

.table td,
.table th{
    vertical-align: middle;
}

/* ===================================
   FOOTER
=================================== */

footer{
    background-color: var(--ense-blue);
    color: white;
}

footer p{
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */

@media(max-width:768px){

    /* Top Bar */

    .top-bar-content{
        flex-direction: column;
        gap: 12px;
    }

    .top-bar-info{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-social{
        justify-content: center;
    }

    /* Navbar */

    .company-name{
        font-size: 1rem;
    }

    .company-tagline{
        font-size: 10px;
    }

    .navbar-nav{
        text-align: center;
        padding-top: 15px;
    }

    .navbar .btn-warning{
        width: 100%;
        margin-top: 15px;
    }

    /* Hero */

    
	.hero-slide{
    min-height: 420px;
    animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-content{
    margin-top: 0;
}
	
    .hero-content{
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1{
        font-size: 2.5rem;
    }

    .hero-content p{
        font-size: 1rem;
    }

    .hero-buttons .btn{
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }

    /* Gallery */

    .gallery-image{
        height: 250px;
    }

}
.main-logo{
    height: 50px;
}

.hero-carousel,
#enseCarousel{
    margin: 0;
    padding: 0;
}

.navbar,
.top-bar{
    margin-bottom: 0;
}

/* ===================================
   OVERLAPPING STATISTICS SECTION
=================================== */

.stats-bar{
    background: linear-gradient(
        90deg,
        #02162D,
        #0A2240
    );

    padding: 30px 0;
}

/* ===================================
   ANIMATED COUNTERS
=================================== */

.stat-item{
    color: white;
    text-align: center;
}

.stat-item i{
    font-size: 36px;
    color: var(--ense-gold);
    margin-bottom: 12px;
    display: block;
}

.stat-item h2{
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-item p{
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(max-width:768px){

    .stat-item{
        margin-bottom: 25px;
    }

    .stat-item i{
        font-size: 30px;
    }

    .stat-item h2{
        font-size: 2rem;
    }

    .stat-item p{
        font-size: 12px;
    }

}

.stat-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.stat-icon{
    font-size: 2rem;
    color: var(--ense-gold);
}

.stat-header h2{
    margin: 0;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}



.stat-box h2{
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box p{
    color: rgba(255,255,255,0.85);
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

@media(max-width:768px){

    .stats-overlap{
        margin-top: -40px;
    }

    .stats-wrapper{
        padding: 30px 20px;
    }

    .stat-box{
        margin-bottom: 25px;
    }

    .stat-box h2{
        font-size: 2.2rem;
    }
  
    .stat-icon{
    font-size: 1.6rem;
    }

    .stat-header h2{
    font-size: 2rem;
    }  
}

/* ===================================
   CORE SERVICES
=================================== */

.core-services{
    background: #ffffff;
}

.section-subtitle{
    color: var(--ense-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-description{
    max-width: 700px;
    margin: auto;
    color: var(--ense-gray);
}

.service-card{
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover .service-icon{
    background: var(--ense-gold);
    color: var(--ense-blue);

    transform: rotateY(180deg);
}

.service-icon{
    width: 80px;
    height: 80px;

    background: var(--ense-blue);
    color: #ffffff;

    border-radius: 50%;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    transition: all 0.3s ease;
}


.service-card h4{
    color: var(--ense-blue);
    margin-bottom: 15px;
}

.service-card p{
    color: var(--ense-gray);
    margin-bottom: 25px;
}

.service-link{
    color: var(--ense-blue);
    font-weight: 700;
    transition: 0.3s;
}

.service-link:hover{
    color: var(--ense-gold);
}

/* ===================================
   FEATURED PROJECTS
=================================== */

.featured-projects{
    background: #f8f9fa;
}

.featured-project-card{
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;

    height: 100%;
}

.featured-project-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.featured-project-image{
    overflow: hidden;
}

.featured-project-image img{
    width: 100%;
    height: 260px;
    object-fit: cover;

    transition: 0.5s;
}

.featured-project-card:hover
.featured-project-image img{
    transform: scale(1.08);
}

.featured-project-body{
    padding: 25px;
}

.project-meta{
    display: flex;
    justify-content: space-between;

    margin-bottom: 15px;

    color: var(--ense-gray);

    font-size: 14px;
}

.project-meta span{
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-project-body h4{
    color: var(--ense-blue);

    margin-bottom: 15px;
}

.featured-project-body p{
    color: var(--ense-gray);

    margin-bottom: 0;
}

/* FEATURED PROJECTS HEADER */

.featured-projects{
    position: relative;
}

.featured-projects-button{
    position: absolute;
    top: 0;
    right: 0;
}

@media(max-width:768px){

    .featured-projects-button{
        position: static;
        text-align: center;
        margin-top: 20px;
    }

}

/* FEATURED PROJECTS */

.featured-project-card{
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured-project-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.featured-project-image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-project-body{
    padding: 20px;
}

.featured-project-body h4{
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--ense-blue);
}

.project-meta{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 8px;
}

.featured-project-body p{
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

/* ===================================
   FOOTER
=================================== */

.footer-section{
    background: var(--ense-blue);
    color: rgba(255,255,255,0.85);
    padding-top: 70px;
}

.footer-logo{
    max-height: 70px;
}

.footer-about{
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title{
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links,
.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li{
    margin-bottom: 15px;
}

.footer-links a{
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.footer-links a:hover{
    color: var(--ense-gold);
    padding-left: 5px;
}

.footer-contact i{
    color: var(--ense-gold);
    margin-right: 10px;
}

.footer-social{
    display: flex;
    gap: 12px;
}

.social-icon{
    width: 42px;
    height: 42px;

    background: rgba(255,255,255,0.10);

    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.social-icon:hover{
    background: var(--ense-gold);
    color: var(--ense-blue);
    transform: translateY(-3px);
}

.footer-bottom{
    margin-top: 50px;
    padding: 20px 0;

    background: rgba(0,0,0,0.20);
}

.footer-bottom p{
    margin: 0;
}

.back-to-top{
    width: 45px;
    height: 45px;

    background: var(--ense-gold);

    color: var(--ense-blue);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition: all 0.3s ease;
}

.back-to-top:hover{
    transform: translateY(-3px);
}

@media(max-width:768px){

    .footer-section{
        text-align: center;
    }

    .footer-social{
        justify-content: center;
    }

    .footer-bottom .d-flex{
        flex-direction: column;
        gap: 15px;
    }

}

/* ===================================
   WHY CHOOSE US
=================================== */

.why-choose-us{
    background: #ffffff;
}

.why-card{
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.why-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-icon{
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--ense-blue);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
}

.why-card h4{
    color: var(--ense-blue);

    margin-bottom: 15px;
}

.why-card p{
    color: var(--ense-gray);

    line-height: 1.8;

    margin-bottom: 0;
}

/* ===================================
   ABOUT SECTION
=================================== */

/* ===================================
   MISSION, VISION & VALUES
=================================== */

.mission-vision{
    background: #f8f9fa;
}

.mv-card{
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mv-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mv-icon{
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--ense-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.mv-card h3{
    color: var(--ense-blue);
    margin-bottom: 20px;
}

.mv-card p{
    color: var(--ense-gray);
    line-height: 1.9;
    margin-bottom: 0;
}

.values-list{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li{
    margin-bottom: 15px;
    color: var(--ense-dark);
    font-weight: 600;
}

.values-list i{
    color: var(--ense-gold);
    margin-right: 10px;
}

@media(max-width:768px){

    .mv-card{
        padding: 30px 25px;
    }

    .values-list{
        text-align: center;
    }

}
.about-section{
    background: #ffffff;
}

.about-image img{
    width: 100%;
    object-fit: cover;
}

.about-text{
    color: var(--ense-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features{
    margin-top: 30px;
}

.about-feature{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.about-feature i{
    color: var(--ense-gold);
    font-size: 20px;
}

.about-feature span{
    color: var(--ense-dark);
    font-weight: 600;
}

@media(max-width:768px){

    .about-section{
        text-align: center;
    }

    .about-feature{
        justify-content: center;
    }

}

/* ===================================
   ABOUT SECTION
=================================== */

.about-section{
    background: #f8f9fa;
}

.about-section .row{
    align-items: center;
}

.about-img{
    max-height: 420px;
    width: 100%;
    object-fit: cover;
}

.about-text{
    color: var(--ense-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features{
    margin-top: 25px;
}

.about-feature{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.about-feature i{
    color: var(--ense-gold);
    font-size: 18px;
}

.about-feature span{
    font-weight: 600;
    color: var(--ense-blue);
}

/* ===================================
   TESTIMONIALS
=================================== */

.testimonials{
    background: #ffffff;
}

.testimonial-card{
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.testimonial-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stars{
    margin-bottom: 15px;
}

.stars i{
    color: var(--ense-gold);
    font-size: 14px;
    margin: 0 1px;
}

.testimonial-text{
    color: var(--ense-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h5{
    color: var(--ense-blue);
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-card span{
    color: var(--ense-gray);
    font-size: 13px;
}

@media(max-width:768px){

    .testimonial-card{
        padding: 20px 15px;
    }

}

/* ===================================
   TRUSTED CLIENTS
=================================== */

.trusted-clients{
    background: #f8f9fa;
}

.client-logo-card{
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

.client-logo-card:hover{
    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.client-logo{
    max-height: 70px;
    width: auto;

    object-fit: contain;

    filter: grayscale(100%);

    transition: all 0.3s ease;
}

.client-logo-card:hover .client-logo{
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media(max-width:768px){

    .client-logo{
        max-height: 55px;
    }

}
```css
/* ===================================
   PROJECT DETAILS PAGE
=================================== */

.project-hero{
    background: #f8f9fa;
}

.project-detail-meta p{
    margin-bottom: 12px;
    color: var(--ense-gray);
    font-size: 16px;
}

.project-detail-meta i{
    color: var(--ense-gold);
    margin-right: 8px;
}

.project-description{
    line-height: 1.9;
    color: #555;
}

.featured-project-body .btn{
    transition: all 0.3s ease;
}

.featured-project-body .btn:hover{
    transform: translateY(-2px);
}

/* ===================================
   PROJECTS HERO
=================================== */



.projects-hero h1{
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.projects-hero .lead{
    color: rgba(255,255,255,0.9);
    max-width: 750px;
    margin: auto;
}

.projects-hero .section-subtitle{
    color: var(--ense-gold);
}

@media(max-width:768px){

    .projects-hero{
        padding: 70px 0 60px;
    }

    .projects-hero h1{
        font-size: 2.2rem;
    }

}

/* ===================================
   INNER PAGE HERO BANNER
=================================== */

.page-hero{
    background:
        linear-gradient(
            rgba(10,34,64,0.80),
            rgba(10,34,64,0.80)
        ),
        url('../images/banners/page-banner.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 35px 0 25px;

    text-align: center;
}

.page-hero h1{
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p{
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: auto;
}

.page-hero .section-subtitle{
    color: var(--ense-gold);
}

@media(max-width:768px){

    .page-hero{
        padding: 45px 0 35px;
    }

    .page-hero h1{
        font-size: 2rem;
    }

}

.page-hero p,
.page-hero .lead{
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   GALLERY
=================================== */

.gallery-card{
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gallery-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-image-wrapper{
    overflow: hidden;
}

.gallery-image{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image{
    transform: scale(1.08);
}

.gallery-body{
    padding: 20px;
    text-align: center;
}

.gallery-body h5{
    margin: 0;
    font-weight: 600;
    color: #0a2240;
}
/* ABOUT PAGE */

.about-overview-image{
    overflow: hidden;
    border-radius: 15px;
}

.about-overview-image img{
    width: 100%;
    transition: transform 0.4s ease;
}

.about-overview-image img:hover{
    transform: scale(1.03);
}
/* Homepage About Section */

.about-section .row{
    align-items: flex-start;
}

.about-image{
    margin-top: 0;
}

.about-image img{
    display: block;
    width: 100%;
}

.about-text{
    line-height: 1.8;
    color: #555;
}

/* Testimonials */

.testimonial-card{
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-text{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.testimonial-card h5{
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-card span{
    color: #777;
}
/* ===================================
   TESTIMONIAL CAROUSEL INDICATORS
=================================== */

#testimonialCarousel .carousel-indicators{
    position: static;
    margin-top: 30px;
    justify-content: center;
}

#testimonialCarousel .carousel-indicators button{
    flex: 0 0 auto !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    background-color: #bfbfbf !important;
    border: none !important;
    margin: 0 6px !important;
    opacity: 1 !important;
}

#testimonialCarousel .carousel-indicators .active{
    background-color: #ffc107 !important;
}
/* ===================================
   HERO TEXT ANIMATIONS
=================================== */

.hero-content .hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-content .hero-buttons{
    opacity: 0;
    transform: translateY(40px);
}

/* Active slide animations */

.carousel-item.active .hero-subtitle{
    animation: fadeUp 0.8s ease forwards;
}

.carousel-item.active h1{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.carousel-item.active p{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.carousel-item.active .hero-buttons{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   HERO TEXT ANIMATIONS
=================================== */

/* Hidden state */

.hero-content .hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-content .hero-buttons{
    opacity: 0;
    transform: translateY(40px);
}

/* Active slide animations */

.carousel-item.active .hero-subtitle{
    animation: fadeUp 0.8s ease forwards;
}

.carousel-item.active h1{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.carousel-item.active p{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.carousel-item.active .hero-buttons{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

/* Keyframes */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* ===================================
   HERO CAROUSEL SMOOTHER TRANSITION
=================================== */

#enseCarousel .carousel-item{
    transition: opacity 1.5s ease-in-out !important;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
=================================== */

.whatsapp-float{
    position: fixed;

    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    animation: whatsappPulse 2s infinite;

    transition: all 0.3s ease;
}

.whatsapp-float:hover{
    color: #ffffff;

    transform: translateY(-5px) scale(1.08);

    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:
            0 0 0 0 rgba(37,211,102,0.60);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){

    .whatsapp-float{

        width: 58px;
        height: 58px;

        font-size: 30px;

        bottom: 20px;
        right: 20px;
    }

}

/* ===================================
   WHATSAPP TOOLTIP
=================================== */

.whatsapp-wrapper{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-tooltip{
    position: absolute;

    right: 80px;
    bottom: 10px;

    background: #ffffff;
    color: var(--ense-blue);

    padding: 10px 15px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow: 0 5px 20px rgba(0,0,0,0.15);

    animation:
        tooltipFadeIn 1s ease,
        tooltipHide 1s ease 8s forwards;
}

.whatsapp-tooltip::after{
    content: "";

    position: absolute;

    top: 50%;
    right: -8px;

    transform: translateY(-50%);

    border-width: 8px 0 8px 8px;
    border-style: solid;

    border-color:
        transparent
        transparent
        transparent
        #ffffff;
}

@keyframes tooltipFadeIn{

    from{
        opacity: 0;
        transform: translateX(15px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes tooltipHide{

    to{
        opacity: 0;
        visibility: hidden;
    }

}

@media(max-width:768px){

    .whatsapp-wrapper{
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip{

        right: 70px;

        font-size: 12px;

        padding: 8px 12px;
    }

}

/* ===================================
   PREMIUM SERVICES PAGE
=================================== */

.service-card-premium{
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.service-card-premium:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.service-icon-premium{
    width: 80px;
    height: 80px;
    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--ense-blue);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    transition: all 0.4s ease;
}

.service-card-premium:hover .service-icon-premium{
    background: var(--ense-gold);
    color: var(--ense-blue);
    transform: rotateY(180deg);
}

.service-card-premium h4{
    color: var(--ense-blue);
    margin-bottom: 15px;
}

.service-card-premium p{
    color: #666;
    line-height: 1.8;
}

.service-features{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li{
    margin-bottom: 12px;
    color: #555;
}

.service-features i{
    color: var(--ense-gold);
    margin-right: 10px;
}

/* Services Process */

.process-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:15px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.process-number{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--ense-gold);
    color:var(--ense-blue);
    font-size:1.5rem;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Premium Service Cards */

.service-card-premium{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card-premium:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-icon-premium{
    width:80px;
    height:80px;
    margin-bottom:25px;
    border-radius:50%;
    background:var(--ense-blue);
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-features{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.service-features li{
    margin-bottom:12px;
}

.service-features i{
    color:var(--ense-gold);
    margin-right:10px;
}

.service-list{
    list-style:none;
    padding:0;
}

.service-list li{
    margin-bottom:15px;
}

.service-list li::before{
    content:"✓";
    color:var(--ense-gold);
    font-weight:700;
    margin-right:10px;
}

/* ===================================
   PREMIUM SERVICES PAGE
=================================== */

/* Hero */

.services-hero{
    padding: 90px 0;
}

.services-hero h1{
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.services-hero .lead{
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

/* Service Tiles */

.premium-tile{
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.35s ease;
}

.premium-tile:hover{
    transform: translateY(-10px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.premium-icon{
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--ense-blue);

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    transition: all 0.35s ease;
}

.premium-tile:hover .premium-icon{
    background: var(--ense-gold);

    color: var(--ense-blue);

    transform: rotateY(180deg);
}

.premium-tile h4{
    color: var(--ense-blue);
    margin-bottom: 15px;
}

.premium-tile p{
    color: var(--ense-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Industries */

.industry-card{
    background: #ffffff;

    border-radius: 15px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.industry-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.industry-card i{
    font-size: 40px;

    color: var(--ense-gold);

    margin-bottom: 20px;

    display: block;
}

.industry-card h5{
    color: var(--ense-blue);

    margin-bottom: 15px;
}

.industry-card p{
    color: var(--ense-gray);
}

/* Showcase */

.showcase-image{
    width: 100%;

    border-radius: 15px;

    transition: transform 0.4s ease;
}

.showcase-image:hover{
    transform: scale(1.03);
}

.showcase-list{
    list-style: none;

    padding: 0;

    margin-top: 25px;
}

.showcase-list li{
    margin-bottom: 12px;

    color: var(--ense-dark);

    font-weight: 500;
}

.showcase-list li::before{
    content: "✓";

    color: var(--ense-gold);

    font-weight: 700;

    margin-right: 10px;
}

/* Process */

.process-card{
    background: #ffffff;

    border-radius: 15px;

    padding: 35px 25px;

    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.process-card:hover{
    transform: translateY(-8px);
}

.process-number{
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--ense-blue);

    color: #ffffff;

    font-size: 28px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h5{
    color: var(--ense-blue);
}

.process-card p{
    color: var(--ense-gray);
}

/* Trust Cards */

.trust-card{
    background: #ffffff;

    border-radius: 15px;

    padding: 35px 25px;

    height: 100%;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.trust-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.trust-card i{
    font-size: 40px;

    color: var(--ense-gold);

    margin-bottom: 20px;

    display: block;
}

.trust-card h5{
    color: var(--ense-blue);

    margin-bottom: 15px;
}

.trust-card p{
    color: var(--ense-gray);
}

/* FAQ */

.accordion-item{
    border: none;

    margin-bottom: 15px;

    border-radius: 12px !important;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.accordion-button{
    font-weight: 600;
}

.accordion-button:not(.collapsed){
    background: var(--ense-blue);

    color: #ffffff;
}

.accordion-button:focus{
    box-shadow: none;
}

/* ===================================
   SERVICES CTA
=================================== */

.services-cta{
    background: linear-gradient(
        135deg,
        #F4B400,
        #d89b00
    );

    padding: 90px 0;
    color: #0A2240;
}

.services-cta .section-subtitle{
    color: rgba(10,34,64,0.8);
}

.services-cta h2{
    color: #0A2240;
    margin-bottom: 25px;
    font-weight: 700;
}

.services-cta p{
    color: rgba(10,34,64,0.85);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 35px;
}

.services-cta .cta-buttons .btn{
    margin: 0 10px;
    min-width: 180px;
}

.services-cta .btn-dark{
    background: #0A2240;
    border-color: #0A2240;
}

.services-cta .btn-dark:hover{
    background: #02162D;
    border-color: #02162D;
}

.services-cta .btn-outline-dark:hover{
    background: #0A2240;
    color: #ffffff;
}

@media(max-width:768px){

    .services-cta{
        padding: 70px 0;
    }

    .services-cta .cta-buttons .btn{
        display: block;
        width: 100%;
        margin: 10px 0;
    }

}




/* ===================================
   WHY CHOOSE ENSE
=================================== */

.advantage-card{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.advantage-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advantage-card i{
    font-size: 40px;
    color: var(--ense-gold);
    margin-bottom: 20px;
    display: block;
}

.advantage-card h4{
    color: var(--ense-blue);
    margin-bottom: 15px;
}

.advantage-card p{
    color: var(--ense-gray);
    line-height: 1.8;
}

/* ===================================
   COMPANY MILESTONES
=================================== */

.timeline{
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--ense-gold);
    transform: translateX(-50%);
}

.timeline-item{
    position: relative;
    margin-bottom: 50px;
}

.timeline-year{
    width: 90px;
    height: 90px;
    background: var(--ense-blue);
    color: #ffffff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.timeline-content{
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.timeline-content h4{
    color: var(--ense-blue);
    margin-bottom: 10px;
}

.timeline-content p{
    color: var(--ense-gray);
    margin: 0;
    line-height: 1.8;
}

@media(max-width:768px){

    .timeline::before{
        left: 45px;
    }

    .timeline-year{
        margin-left: 0;
    }

    .timeline-content{
        margin-left: 110px;
        text-align: left;
    }

}
/* ===================================
   TEAM SECTION
=================================== */

.team-card{
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-image{
    overflow: hidden;
}

.team-image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.team-card:hover .team-image img{
    transform: scale(1.08);
}

.team-body{
    padding: 25px;
    text-align: center;
}

.team-body h4{
    color: var(--ense-blue);
    margin-bottom: 8px;
}

.team-body span{
    color: var(--ense-gray);
    font-size: 14px;
}

/* ===================================
   CERTIFICATIONS
=================================== */

.cert-card{
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.cert-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cert-card i{
    font-size: 42px;
    color: var(--ense-gold);
    margin-bottom: 20px;
    display: block;
}

.cert-card h5{
    color: var(--ense-blue);
    margin-bottom: 15px;
}

.cert-card p{
    color: var(--ense-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===================================
   ABOUT STATISTICS
=================================== */

.about-stats{
    background: #ffffff;
}

.about-stat-card{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-stat-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-stat-card i{
    font-size: 42px;
    color: var(--ense-gold);
    margin-bottom: 20px;
    display: block;
}

.about-stat-card h2{
    color: var(--ense-blue);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-stat-card p{
    color: var(--ense-gray);
    font-weight: 600;
    margin-bottom: 0;
}

/* ===================================
   ABOUT CTA
=================================== */

.about-cta{
    background: linear-gradient(
        135deg,
        #F4B400,
        #d89b00
    );

    padding: 90px 0;
    color: #0A2240;
}

.about-cta .section-subtitle{
    color: rgba(10,34,64,0.8);
}

.about-cta h2{
    color: #0A2240;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-cta p{
    color: rgba(10,34,64,0.85);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 35px;
}

.cta-buttons .btn{
    margin: 0 10px;
    min-width: 180px;
}

.cta-buttons .btn-dark{
    background: #0A2240;
    border-color: #0A2240;
}

.cta-buttons .btn-dark:hover{
    background: #02162D;
    border-color: #02162D;
}

.cta-buttons .btn-outline-dark:hover{
    background: #0A2240;
    color: #ffffff;
}

@media(max-width:768px){

    .about-cta{
        padding: 70px 0;
    }

    .cta-buttons .btn{
        display: block;
        width: 100%;
        margin: 10px 0;
    }

}

/* Mobile menu alignment */

@media (max-width: 991.98px){

    .navbar-nav{

        text-align: left;

        align-items: flex-start;

    }

    .navbar-nav .nav-link{

        padding-left: 0;

    }

}

/* ===================================
   MOBILE HEADER IMPROVEMENTS
=================================== */

/* Hide top bar on tablets and phones */

@media (max-width: 991.98px){

    .top-bar{

        display: none;

    }

}

/* Left align mobile navigation */

@media (max-width: 991.98px){

    .navbar-collapse{

        text-align: left;

        padding-top: 20px;

    }

    .navbar-nav{

        width: 100%;

        align-items: flex-start;

    }

    .navbar-nav .nav-item{

        width: 100%;

    }

    .navbar-nav .nav-link{

        display: block;

        padding: 12px 0;

        text-align: left;

    }

}

/* Mobile quote button */

@media (max-width: 991.98px){

    .navbar .btn-warning{

        margin-left: 0 !important;

        margin-top: 15px;

        display: inline-block;

    }

}