
  /**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #555555;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background: #ffffff;
    margin: 0%;
    padding: 0px;
    padding-top: 100px;
}


a {
    color: #FFD662;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #333333;
    outline: none;
    text-decoration: none;
}

p {
    color: #555555;
    
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Oswald', sans-serif;
}

/* TOP BAR */
.top-bar {
    position: relative;   /* NOT fixed */
    top: auto;
    width: 100%;
    z-index: auto;
    background: #387DF8;          /* light background */
    color: #000;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}


/* LEFT SIDE */
.top-left {
    display: flex;
    align-items: center;
    gap: 30px;                    /* space between items */
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;                     /* space between icon & text */
}

.top-left i {
    color: #000;
    font-size: 13px;
}

/* LINKS */
.top-bar a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* RIGHT SIDE (SOCIAL ICONS) */
.top-right {
    display: flex;
    align-items: center;
    gap: 18px;                    /* space between icons */
}

.top-right a {
    color: #000;
    font-size: 15px;
    transition: 0.3s ease;
}

.top-right a:hover {
    opacity: 0.7;
}

/**********************************
*********** NAV BAR CSS ***********
**********************************/

/* MAIN NAV WRAPPER */
#nav {
    position: fixed;        /* FLOAT ABOVE HEADER */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 158px;
    height: 80px;

    background: white;
    box-shadow: none;
    z-index: 5;

    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}


/* NAVBAR CONTAINER */
#nav .navbar {
   max-width: 1140px;
    margin: auto;
    padding: 5px 0;
    background: transparent !important;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO IMAGE */
#nav .navbar img.certificates {
     width: 100px;
    height: auto;
    display: block;
}

/* CERTIFICATE IMAGE */
#nav .navbar img.certificate {
    width: 200px;
    height: auto;
    display: block;
}

.certificat {
    width: 100px;
    margin-left: 60px;
    height: auto;
    display: block;
}


/* NAV LINKS */
#nav .navbar-nav {
    display: flex;
    align-items: center;
    margin-left: 170px;
   
}

#nav .navbar-light .nav-link {
   position: relative;
    color: #0a2e6f;             /* DARK FOR HEADER IMAGE */
    font-size: 20px;
    font-weight: 700;
    padding: 12px 18px;
    letter-spacing: 0.5px;
     white-space: nowrap;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* UNDERLINE EFFECT */
#nav .navbar-light .nav-link::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    background: #0a2e6f;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#nav .navbar-light .nav-link:hover::after,
#nav .navbar-light .nav-link.active::after {
      opacity: 1;
}

#nav .navbar-light .nav-link:hover,
#nav .navbar-light .nav-link.active {
    color: #0081a1;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    outline: none;
}


/* ===== MEGA DROPDOWN ===== */
/* ===== MEGA DROPDOWN ===== */
.mega-dropdown {
    position: relative;
}

/* MENU PANEL */
.mega-menu {
    position: fixed;
    top: 130px;
    left: 20%;
    right: 2%;
    padding: 18px;

    background: linear-gradient(135deg, #3a99dd, #ffffff 65%);
    border-radius: 16px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.35s ease;

    z-index: 9999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* SHOW MENU */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* GRID */
.mega-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

/* PRODUCT CARD */
.mega-item {
    background: linear-gradient(to bottom right, #ffffff, #dbeeff);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: 0.3s ease;
}

/* IMAGE HOLDER (IMPORTANT FIX) */
.mega-img {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TEXT */
.mega-item h4 {
    font-size: 13px;
    color: #0d6efd;
    margin: 6px 0 2px;
}

.mega-item span {
    font-size: 11px;
    color: #444;
}

/* HOVER */
.mega-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(13,110,253,0.25);
}
/* ================= MOBILE NAV FIX ================= */
/* ================= MOBILE RESPONSIVE (MERGED) ================= */
/* ================= MOBILE ONLY ================= */
@media (max-width: 991px) {

    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* ================= TOP BAR ================= */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #387DF8;
        padding: 4px 8px;
        font-size: 12px;
        z-index: 1200;
    }
    .phonesize{
        font-size: 8px;
    }
    .emailsize{
        margin-left: -40px;
    }

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .email--box{
        margin-left: -40px;
    }

    .top-left {
        display: flex;
        flex-direction: column;
        gap: 2px;
        text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
    }
    .phone-num{
        font-size: 8px;
    }

    .top-right {
        display: flex;
        gap: 12px;
    }

    /* ================= NAV ================= */
     #nav {
        position: relative;
        z-index: 1100;
        min-height: 50px;   /* smaller height */
        padding: 4px 0;
    }

    #nav .navbar {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background: #ffffff !important;
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        border-bottom: none !important;
        margin: 0;
        padding: 2px 0px;
        z-index: 1100;
    }

    #nav .navbar .container {
        position: relative;   /* anchor for absolute positioning */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        padding-right: 10px;
    }

    /* ================= LOGO ================= */
    #nav .navbar img.certificate {
        width: 150px;
        height: auto;
        position: relative;
        z-index: 1;
    }

     #nav .navbar img.certificat{
        width: 63px !important;
        margin-left: -70px !important;
     }
     
    /* ================= CERTIFICATE IMAGE (CENTER LAYER) ================= */
    #nav .navbar img.certificates {
        display: block !important;
        position: absolute;
        left: 75%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: auto;
        z-index: 2;
        pointer-events: none;
    }

    /* ================= NAV TOGGLER ================= */
    .navbar-toggler {
        padding: 4px 6px;
        border: 1px solid #ccc;
        position: relative;
        z-index: 3;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }

    /* ================= MENU ================= */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #eee;
        z-index: 1000;
    }

    .navbar-nav {
        margin-left: 0 !important;
        padding: 0px;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .navbar-nav .nav-link {
        font-size: 12px !important;
        padding: 4px 0px;
        color: #0a2e6f;
        white-space: nowrap;
        text-transform: uppercase;
        overflow: hidden;
    }

    /* ================= REMOVE MEGA MENU ================= */
    .mega-menu,
    .mega-dropdown:hover .mega-menu {
        display: none !important;
    }

    .mega-dropdown > a::after {
        display: none;
    }

    /* ================= PAGE OFFSET ================= */
    body {
        padding-top: 30px;
    }
}



/**********************************/
/*********** Header CSS ***********/
/**********************************/
#home {
    position: relative;

    /* IMPORTANT PART */
    padding-top: calc(20px + 80px);  /* HEADER + NAV HEIGHT */
    padding-bottom: 100px;

  
    overflow: hidden;
    max-height: 500vh; 
}

html, body {
    max-width: 100%;
    overflow-x: hidden;   /* only horizontal lock */
}



/* BACKGROUND LAYERS */
#home::before,
#home::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    
}

/* OVERLAY */
#home .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.6)
    );
  
}

/* CONTENT */
#home .slide-contentt,
#home .slide-img {
    position: relative;
    z-index: 2;
}

#home h2 {
    font-size: 70px;
    font-weight: 700;;
}

#home h2 span {
    color: #000;
}

#home .slide-content {
    align-items: flex-start !important;
}

#home .image {
    margin-top: 15px;
    padding-top: 0;
}

#home .text{
     margin-top: 70px;
    padding-top: 0;
}

#home p {
    font-size: 22px;
    color: #333;
    margin: 20px 0;
     text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

#home .btn {
    font-size: 20px;
    padding: 8px 30px;
    border: 2px solid #333;
    letter-spacing: 3px;
}

#home .btn:hover {
    background: #FFD662;
    border-color: #FFD662;
}
p {
  text-align: justify;
  text-justify: inter-word;

  /* 🔑 KEY FIXES */
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;

  word-spacing: normal;
  letter-spacing: 0.01em;
  line-height: 1.7;
}


/**********************************
******** MOBILE *******************
**********************************/
@media (max-width: 768px) {

    #nav {
        position: relative;
    }
    #home {
    position: relative;

    /* IMPORTANT PART */
    padding-top: 10px;  /* HEADER + NAV HEIGHT */
    padding-bottom: 10px;
    overflow: hidden;
}

    #header {
        padding-top: 140px;
        padding-bottom: 240px;
        text-align: center;
    }

    #header h2 {
        font-size: 36px;
    }

    #header p {
        font-size: 18px;
    }

    #nav img {
        width: 140px;
    }
  p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    max-width: 100%;
  }

}

/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    left: calc(50% - 25px);
    bottom: 10px;
    background: #161616;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #333333;
}

.section-header p {
    margin: 0;
    color: #FFD662;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.section-header h1 {
    margin: 0;
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .section-header h1 {
        font-size: 45px;
    }
}



/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#feature .col-md-4:first-child .product-feature {
    text-align: right;
}

#feature .product-feature {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

#feature .product-feature:last-child {
    margin: 0;
}

#feature .product-icon {
    position: relative;
    width: 60px;
    height: inherit;
    float: left;
}

#feature .product-icon i {
    color: #FFD662;
    font-size: 40px;
    margin-top: 5px;
}

#feature .product-content {
    position: relative;
    width: calc(100% - 60px);
    float: left;
}

#feature .product-feature h2 {
    font-size: 18px;
    font-weight: 400;
}

#feature .product-feature p {
    font-size: 16px;
    margin-bottom: 0;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

#feature .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#feature .product-img img {
    width: 100%;
}

@media (max-width: 767.98px) {
    #feature .col-md-4:first-child .product-feature {
        text-align: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-icon {
        float: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-content {
        float: right;
    }
    
    #feature .product-img img {
        margin: 45px 0;
    }
}



/**********************************/
/********* Newsletter CSS *********/
/**********************************/
#newsletter {
    position: relative;
    padding: 45px 0;
    text-align: right;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.781), rgba(255, 255, 255, 0)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#newsletter img {
    position: absolute;
    height: 300px;
    left: 0;
    bottom: -40px;
    z-index: 1;
}

#newsletter h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 15px;
}

#newsletter h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    right: 0;
    bottom: 0;
    background: #333333;
}

#newsletter form {
    position: relative;
    font-size: 0;
}

#newsletter form input {
    width: 250px;
    height: 35px;
    padding: 0 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px 0 0 4px;
}

#newsletter form .btn {
    float: right;
    width: 100px;
    height: 35px;
    padding-top: 3px;
    color: #FFD662;
    font-size: 16px;
    letter-spacing: 3px;
    background: #333333;
    border: 2px solid #333333;
    border-radius: 0 4px 4px 0;
    transition: .3s;
}

#newsletter form .btn:hover {
    color: #333333;
    background: #ffffff;
}

#newsletter form .btn:focus {
    box-shadow: none;
}

@media(max-width: 767.98px) {
    #newsletter img {
        height: 200px;
        left: 0;
        bottom: 0;
        z-index: 0;
    }
    
    #newsletter form input {
        width: 200px;
    }
}



/**********************************/
/********** Process CSS ***********/
/**********************************/
#process {
    position: relative;
    padding: 30px 0 0px 0;
    background: #ffffff;
}

#process .process-col {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

#process .process-col::after {
    position: absolute;
    top: 12px;
    right: -12px;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 45px;
    color: #dddddd;
}

#process .col-md-4:last-child .process-col::after {
    display: none;
}

#process .process-col i {
    color: #FFD662;
    font-size: 90px;
    margin-bottom: 15px;
}

#process .process-col h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#process .process-col p {
    font-size: 18px;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

@media (max-width: 767.98px) {
    #process .process-col::after {
        opacity: 0;
    }
}

#process .youtube-player {
    position: relative;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ffffff;
    border-radius: 5px;
    margin: 0;
}

@media (max-width: 991.98px) {
    #process .youtube-player {
        padding-bottom: 50%;
    }
}

@media (max-width: 767.98px) {
    #process .youtube-player {
        padding-bottom: 56.23%;
    }
}

#process .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

#process .youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-filter: brightness(100%);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

#process .youtube-player img:hover {
    -webkit-filter: brightness(90%);
}

#process .youtube-player .play {
    height: 100px;
    width: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
    background: url("../img/play.png") no-repeat;
    cursor: pointer;
}

#process .youtube-player .play:hover {
    background: url("../img/play-hover.png") no-repeat;
}

@media (max-width: 575.98px) {   
    #process .youtube-player .play {
        height: 60px;
        width: 60px;
        left: 50%;
        top: 50%;
        margin-left: -30px;
        margin-top: -30px;
        background: url("../img/play-60.png") no-repeat;
    }
    
    #process .youtube-player .play:hover {
        background: url("../img/play-hover-60.png") no-repeat;
    }
}



/**********************************/
/******* Call To Action CSS *******/
/**********************************/
#call-to-action {
    position: relative;
    padding: 45px 0;
    text-align: left;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.788), rgba(255, 255, 255, 0)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#call-to-action img {
    position: absolute;
    height: 300px;
    right: 0;
    bottom: -40px;
    z-index: 1;
}

#call-to-action h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 15px;
}

#call-to-action h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #333333;
}

#call-to-action a.btn {
    position: relative;
    height: 40px;
    padding: 5px 30px;
    color: #FFD662;
    font-size: 16px;
    letter-spacing: 3px;
    background: #333333;
    border: 2px solid #333333;
    z-index: 1;
}

#call-to-action a.btn:hover {
    color: #333333;
    background: #ffffff;
}

#call-to-action a.btn:focus {
    box-shadow: none;
}

@media(max-width: 767.98px) {
    #call-to-action img {
        height: 200px;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
}



/**********************************/
/********** Products CSS **********/
/**********************************/
/* PRODUCTS SECTION */
#products {
    position: relative;
    padding: 20px 0;
    background: #ffffff;
    
}

/* Allow overflow for zoom effect */
#products .row {
    overflow: visible;
    
}

/* PRODUCT CARD */
#products .product-single {
    position: relative;
    background: #ffffff;
    margin-bottom: 10px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 18px;
    height: 210px; /* REDUCED HEIGHT */
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    

  transition-delay: 0.1s;
    z-index: 1;
      box-shadow:
        0 20px 40px rgba(13, 110, 253, 0.25),
        0 10px 20px rgba(13, 110, 253, 0.18);
}


.product-single:nth-child(2) { transition-delay: 0.15s; }
.product-single:nth-child(3) { transition-delay: 0.2s; }
.product-single:nth-child(4) { transition-delay: 0.25s; }
.product-single:nth-child(5) { transition-delay: 0.3s; }
.product-single:nth-child(6) { transition-delay: 0.35s; }

@media (min-width: 992px) {
    #products .row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    /* Disable Bootstrap column width */
    #products .row > div[class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
    }
}
/* Card hover */
#products .product-single:hover {
    background: #387DF8;
    box-shadow: 0 20px 40px rgba(255, 244, 244, 0.18);
    cursor: pointer;
    color: white;
}

/* IMAGE CONTAINER */
#products .product-single .product-img {
    position: relative;
    height: 90px; /* SMALLER IMAGE AREA */
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
    z-index: 2;
}

/* PNG IMAGE */
#products .product-img img {
    max-width: 120%;
    max-height: 85%;
    object-fit: contain;
    margin-top: 5px;

    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
   position: absolute;
    opacity: 0;
}

#products .product-img img.active {
    opacity: 1;
}

/* PNG SCALE OVER CARD */
#products .product-single:hover .product-img img {
    transform: scale(1.5);
}
#products .product-single:hover  .product-title h2{
    color: white;
}
#products .product-single:hover  h3{
    color: white;
}

/* PRODUCT TITLE */
#products .product-title {
    margin-bottom: 10px;

}
.product-single h2 {
    color: #0d6efd;   /* ZENFLOW */
}

.product-single h3 {
    color: #333;      /* footer text */
}

.product-single {
    color: inherit;
}

.product-single a {
    text-decoration: none;
    color: inherit;
}


#products .product-title h2 {
    font-size: 15px;
    font-weight: 600;
}

/* PRODUCT FOOTER */
#products .product-footer {
    margin-top: auto;
    margin-bottom: -10px;
    padding: 3px 2px;
    background-color: #387DF8;
    border-radius: 10px;
}

#products .product-footer h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
   
}

/* BUTTON */
#products .product-footer .btn {
    padding: 4px 18px;
    font-size: 18px;
    border: 2px solid #333;
    background: transparent;
    border-radius: 50px;
    transition: all 0.35s ease;
}

/* BUTTON HOVER */
#products .product-footer .btn:hover {
    color: #40f7f7;
    background: #333;
    transform: translateX(4px);
    
}

/* MOBILE */
@media (max-width: 991px) {
    #products .product-single {
        margin-bottom: 25px;
        height: auto;
    }
}

/* GRID */
.application-grid {
    margin-top: 40px;
}

/* ===== DESKTOP SIZE ===== */
.app-box {
    min-height: 260px;                 /* FIXED CARD HEIGHT */
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

/* IMAGE AREA */
.app-img {
    height: 230px;                 /* FIXED IMAGE HEIGHT */
    width: 100%;
    overflow: hidden;
}

/* IMAGE FIT */
.app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITLE */
.app-box h3 {
    height: 90px;                  /* FIXED TEXT AREA */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* HOVER */
.app-box:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
/*================================ */
@media (max-width: 991px) {

    .app-box {
        height: auto;              /* allow flexibility */
    }

    .app-img {
        height: 190px;
    }

    .app-box h3 {
        height: auto;
        font-size: 16px;
        padding: 10px;
    }
}
/* ===============================
   MOBILE: SMALLER BOX + 2 PER ROW
================================ */
/* ===============================
   MOBILE: EXTRA COMPACT BOX HEIGHT
================================ */
@media (max-width: 575.98px) {

    /* 2 ITEMS PER ROW */
    .application-grid > div {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        padding-left: 5px;
        padding-right: 5px;
    }

    /* COMPACT CARD */
    .app-box {
        min-height: 170px;      /* REDUCED HEIGHT */
        margin-bottom: 10px;
        border-radius: 8px;
    }

    /* SMALLER IMAGE */
    .app-img {
        height: 100px;          /* REDUCED IMAGE HEIGHT */
    }

    /* COMPACT TEXT */
    .app-box h3 {
        font-size: 12.5px;
        padding: 1px;
        line-height: 1.15;
        min-height: 20px;
    }

    /* VERY SOFT HOVER */
    .app-box:hover {
        transform: translateY(-1px) scale(1.005);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }
}

/**********************************/
/********** Contact CSS ***********/
/**********************************/
#contact {
    position: relative;
    width: 100%;
}

#contact .container-fluid,
#contact .container-fluid .col-md-6 {
    padding: 0;
}

#contact .container-fluid .row {
    margin: 0;
}

#contact .container-fluid .col-md-6:first-child {
    min-height: 300px;
    background: url(../img/contact-bg.jpg) center center no-repeat;
    background-size: cover;
}

#contact .contact-info {
    position: relative;
    width: 100%;
    padding: 45px 15px;
    background: #ffffff;
     text-align: justify;
    text-justify: inter-word;
}

@media(min-width: 768px) {
    #contact .contact-info {
        padding: 45px;
    }
}

#contact .contact-info h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

#contact .contact-info h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #333333;
}

#contact .contact-info p {
    font-size: 18px;
    font-weight: 400;
}

#contact .contact-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

#contact .contact-info h3 i {
    width: 20px;
    margin-right: 5px;
}

#contact .contact-info a.btn {
    position: relative;
    margin: 15px 0;
    color: #333333;
    letter-spacing: 3px;
    border: 2px solid #333333;
    transition: .3s;
}

#contact .contact-info a.btn:hover {
    color: #FFD662;
    background: #333333;
}

#contact .social {
    position: relative;
    width: 100%;
}

#contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 2px solid #333333;
    border-radius: 4px;
}

#contact .social a i {
    color: #333333;
}

#contact .social a:hover {
    background: #333333;
}

#contact .social a:hover i {
    color: #FFD662;
}


/* Footer Section */
.footer-section {
    background: #00356B; /* very light blue */
    color: #333;
}

/* Headings */
.footer-section h4 {
    color: #1e88e5; /* light blue */
    border-color: #90caf9 !important;
}


/* Paragraph & Text */
.footer-section p {
    color: #d8d8d8;
     text-align: justify;
    text-justify: inter-word;
}

/* Icons */
.footer-section i {
    color: #1e88e5;
}

/* Links */
.footer-section a {
    color: #1e88e5;
    text-decoration: none;
}

.footer-section a:hover {
    color: #1565c0;
}

/* Phone link color fix */
.footer-section .phone-link {
    color: #d8d8d8 !important;
    text-decoration: none;
}

/* Prevent blue/purple on hover & visited */
.footer-section .phone-link:hover,
.footer-section .phone-link:focus,
.footer-section .phone-link:visited {
    color: #d8d8d8;
    text-decoration: none;
}



/* ================= FOOTER BUTTONS ================= */

/* Primary button base */
.footer-section .btn-primary {
    background-color: #1e88e5;
    border-color: #1e88e5;
    margin: 2%;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

.footer-section .btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
}

/* ================= SOCIAL MEDIA BUTTONS ================= */

/* Default social button background */
.footer-section .btn-lg-square {
    background: #e3f2fd;
    color: #1e88e5;
}

.footer-section .btn-lg-square:hover {
    background: #70767a;
    color: #fff;
}
/* ================= CIRCLE SIZE CONTROL ================= */

/* Force perfect circle + smaller size */
.footer-section .social-simbol .btn {
    width: 42px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* animation base */
    background-color: transparent;
    border: 2px solid #1e88e5;
    transition:
        background-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

/* Icon default size & color */
.footer-section .social-simbol .btn i {
    font-size: 18px;
    line-height: 1;
    color: #1e88e5;
    transition: color 0.3s ease;
}

/* ================= HOVER EFFECT (BLUE + GLOW + BLACK ICON) ================= */

.footer-section .social-simbol .btn:hover {
    background-color: #1e88e5; /* blue bg */
    transform: scale(1.15);
    box-shadow:
        0 0 10px rgba(30, 136, 229, 0.6),
        0 0 20px rgba(30, 136, 229, 0.4),
        0 0 30px rgba(30, 136, 229, 0.2); /* glow */
}

/* Icon turns black on hover */
.footer-section .social-simbol .btn:hover i {
    color: #000;
}

/* Reduce spacing between icons */
.footer-section .social-simbol {
    gap: 5px;
    overflow: visible;
}


/* Google Map */
.map-container iframe {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Copyright Section */
.container-fluid.border-top {
    background: #00356B;
    border-color: #bbdefb !important;
}

.container-fluid.border-top p {
    color: #d8d8d8;
    
}

.container-fluid.border-top a {
    color: #1e88e5;
    font-weight: 600;
}
.footer-section {
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Inner container spacing */
.footer-section .container {
    padding-bottom: 20px;
}

/* Copyright section */
.copyright-section {
    padding: 10px 0;
    margin: 0;
}

/* Ensure no gap after footer */
.footer-section + div {
    margin-bottom: 0 !important;
}
/* mobile responsiveness */
/* =========================
   MOBILE & TABLET FOOTER
========================= */
@media (max-width: 768px) {

   /* ================= RESET ================= */
    .footer-section h4,
    .footer-section p,
    .footer-section a {
        text-align: left;
        font-size: 13px;
         text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;
    }

    /* ================= MAIN STACK ================= */
    .footer-section .row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    /* ================= GET IN TOUCH (FULL ROW) ================= */
    .footer-getintouch {
        width: 100%;
        order: 1;
    }

    /* ================= ADDRESS + ENQUIRY (2 COLUMNS) ================= */
    .footer-address {
        width: 50%;
        order: 2;
    }

    .footer-enquiry {
        width: 50%;
        order: 3;
    }

    /* ================= EMAIL (FULL ROW BELOW ADDRESS) ================= */
    .footer-email {
        width: 100%;
        order: 4;
    }

    /* ================= PHONE (FULL ROW) ================= */
    .footer-phone {
        width: 100%;
        order: 5;
    }

    /* ================= SOCIAL ICONS (SINGLE ROW) ================= */
    .footer-social {
        width: 100%;
        order: 6;
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    .footer-social .btn-lg-square {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* ================= GOOGLE MAP (FULL WIDTH) ================= */
    .footer-map {
        width: 100%;
        order: 7;
        margin-top: 15px;
    }

    .footer-map iframe {
        width: 100%;
        height: 220px;
        border-radius: 12px;
        border: none;
    }

    /* ================= COPYRIGHT ================= */
    .container-fluid.border-top p {
        font-size: 12px;
        text-align: center;
        padding: 10px 0;
    }
}


/* ============================
   GOOGLE FONTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500&display=swap');

/* ============================
   ABOUT SECTION
============================ */
.about-section {
    padding: 0px 0;
    background: #f9fbff;
}

/* Center title */
.about-title {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 6px;
    font-size: 14px;
    color: #1e88e5;
}

/* Brand name */
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-name span {
    color: #005eff;
}

/* Text */
.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;

    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

/* ============================
   TEXT SLIDE (LEFT → RIGHT)
============================ */
/* ======================================================
   TEXT SLIDE (LEFT → RIGHT)
====================================================== */
.text-slide {
    opacity: 0;
    animation: textSlide 1.2s ease forwards;
}

@keyframes textSlide {
    from {
        transform: translateX(-90px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* MOBILE – SMALLER ANIMATION DISTANCE */
@media (max-width: 768px) {
    @keyframes textSlide {
        from {
            transform: translateX(-25px); /* smaller movement */
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    max-width: 100%;
  }
}


/* ======================================================
   IMAGE SLIDE (RIGHT → LEFT)
====================================================== */
.img-slide {
    opacity: 0;
    animation: imgSlide 1.4s ease forwards;
    animation-delay: 0.3s;
}

@keyframes imgSlide {
    from {
        transform: translateX(120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* IMAGE STYLE */
.about-img img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 20px 40px rgba(13, 110, 253, 0.25),
        0 10px 20px rgba(13, 110, 253, 0.18);
}


/* ======================================================
   HEADER SECTION
====================================================== */
#headers {
    position: relative;
    padding: 200px 0;
    background:
        linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 30%,
        rgba(167, 237, 255, 0.5)),
        url(../img/home\ pump.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#headers .headers-content {
    width: 100%;
    text-align: left;
}

#headers .headers-content h2 {
    font-size: 70px;
    font-weight: 700;
}

#headers .headers-content h2 span {
    color: #000;
    text-transform: uppercase;
}

#headers .headers-content p {
    font-size: 22px;
    color: #333;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

#headers .headers-content .btn {
    padding: 7px 30px;
    font-size: 22px;
    letter-spacing: 3px;
    border: 2px solid #333;
    transition: .3s;
}

#headers .headers-content .btn:hover {
    background: #FFD662;
    border-color: #FFD662;
}

#headers .headers-img {
    text-align: right;
}

#headers .headers-img img {
    width: 100%;
}


/* ======================================================
   HEADER RESPONSIVE
====================================================== */
@media (max-width: 991.98px) {
    #headers .headers-content h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    #headers .headers-content {
        text-align: center;
    }

    #headers .headers-img {
        text-align: center;
        margin-bottom: 45px;
    }
}

@media (max-width: 575.98px) {
    #headers .headers-content h2 {
        font-size: 35px;
    }

    #headers .headers-content p {
        font-size: 18px;
    }
}


/* ======================================================
   PRODUCT IMAGE SLIDER
====================================================== */
.product-img-slider {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-slider img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.product-img-slider img.active {
    opacity: 1;
    transform: scale(1);
}

/* ======================================================
   SLIDER BACKGROUND
====================================================== */
.slider {
    position: relative;
    width: 100vw;
    height: 85vh;
    overflow: hidden;
}

.slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/final-bg.jpg") center/cover no-repeat;
    filter: blur(40px);
    transform: scale(1.05);
    z-index: 0;
}

.slider > * {
    position: relative;
    z-index: 1;
}


/* ======================================================
   SLIDES
====================================================== */
.slide {
    position: absolute;
    inset: 0;
    display: none;
}

.slide.active {
    display: block;
}

.bg-overlay {
    position: absolute;
    inset: 0;
}

.slide-content {
    height: 100%;
    padding: 80px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ======================================================
   SLIDE TEXT
====================================================== */
.text {
    width: 45%;
    animation: textFromLeft 1s ease forwards;
}

.text h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0a2e6f;
}

.text p {
    font-size: 18px;
    color: #0a2e6f;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}


/* ======================================================
   SLIDE IMAGE
====================================================== */
.image {
    width: 45%;
    text-align: right;
    animation: imageFromRight 1s ease forwards;
}

.image img {
    max-width: 100%;
}


/* ======================================================
   SLIDE ANIMATIONS
====================================================== */
@keyframes textFromLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes imageFromRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
    
}
/* =========================================
   MOBILE RESPONSIVE – HEADER SLIDER (MERGED)
   Works with existing responsive code
========================================= */

@media (max-width: 767.98px) {

    /* SLIDER HEIGHT AUTO */
    .slider {
        height: auto;
        min-height: 10vh;
        padding: 40px 0;
    }

    /* EACH SLIDE */
    .slide {
        position: relative;
        inset: unset;
        display: none;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .slide.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    /* SLIDE CONTENT STACK */
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    /* TEXT FULL WIDTH */
    .text {
        width: 100%;
        animation: mobileFadeUp 0.6s ease forwards;
    }

    .text h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .text p {
        font-size: 16px;
        text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
    }

    /* IMAGE FULL WIDTH */
    .image {
        width: 100%;
        text-align: center;
        animation: mobileFadeUp 0.6s ease forwards;
    }

    .image img {
        max-width: 85%;
        height: auto;
    }

    /* SMOOTH MOBILE ANIMATION */
    @keyframes mobileFadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/*************************************/
/******** ABOUT FEATURE SECTION *******/
/*************************************/
/* SECTION */
.about-feature {
    min-height: 70vh; /* FULL PAGE HEIGHT */
    background: #f8f9fa;
    display: flex;
    padding-top: 20px;
}

/* FEATURE BOX */
/* FEATURE BOX */
.about-feature-box {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;                     /* SAME BOX HEIGHT */
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 50px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: all 0.45s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

/* ICON */
.about-feature-box .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 22px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    color: #fff;
    transition: transform 0.45s ease;
}

/* TITLE – FIXED HEIGHT */
.about-feature-box h1 {
    font-size: 26px;
    font-weight: 700;
    min-height: 64px;                  /* ✅ SAME TITLE HEIGHT */
    margin-bottom: 16px;
    color: #111;
    transition: color 0.35s ease;
}

/* TEXT – FLEXIBLE */
.about-feature-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;                      /* ✅ paragraph adjusts */
    transition: color 0.35s ease;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
    
}

/* COLOR VARIANTS */
.about-feature-box.blue .icon {
    background: linear-gradient(135deg, #0d6efd, #40f7f7);
}
.about-feature-box.green .icon {
    background: linear-gradient(135deg, #0d6efd, #40f7f7);
}

/* HOVER EFFECT – PREMIUM */
.about-feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px rgba(13, 110, 253, 0.35);
}

/* HOVER TEXT COLOR CHANGE */
.about-feature-box:hover h1,
.about-feature-box:hover p {
    color: #0b2c5f;                    /* DARK BLUE */
}

/* ICON ANIMATION ON HOVER */
.about-feature-box:hover .icon {
    transform: rotate(6deg) scale(1.1);
}


/* INNER MINI FEATURE ROW (INSIDE MAIN BOX) */
.feature-wrapper{
    max-width:1200px;
    margin:80px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr); /* 4 in one row */
    gap:25px;
    padding:0 15px;
    
}

/* CARD */
.feature-card{
    background:#0d6efd;
    border-radius:6px;
    height:200px;
    text-align:center;
    padding-top:55px;
    position:relative;
    color:#fff;
    font-family:'Segoe UI', sans-serif;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

/* ICON PANEL */
.icon-box{
    width:130px;
    height:110px;
    background:#fff;
    border-radius:0px 0px 100px 100px;
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.icon-box img{
    width:80px;
}

/* TITLE */
.feature-card h3{
    padding-top: 20px;
    font-size:14px;
    font-weight:700;
    letter-spacing:0.6px;
    margin:15px 10px 6px;
    text-transform:uppercase;
    color: white;
}

/* TEXT */
.feature-card p{
    font-size:12px;
    opacity:0.9;
    margin:0 15px;
    line-height:1.5;
    color: white;
}

/* HOVER */
.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

/* INITIAL HIDDEN STATE */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* WHEN VISIBLE */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE & TABLET RESPONSIVE ================= */
@media (max-width: 991px) {

    /* ===== ABOUT SECTION STACK ===== */
    .about-section .row.align-items-center {
        row-gap: 20px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-img img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }
    p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    max-width: 100%;
    }
    /* ================================================= */
    /* =============== MINI FEATURE BOXES =============== */
    /* ================================================= */

    .feature-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 PER ROW */
        gap: 12px;                              /* tighter gap */
        margin-bottom: 20px;
        top: 30px;
        padding: 0 8px;
    }

    .feature-card {
        padding: 80px 8px 0px; /* reduced padding */
        text-align: center;
        overflow: visible;      /* ensure nothing hides */
    }

    .feature-card .icon-box {
        margin-bottom: 6px;
        top: -10px;     /* prevent overlap */
    }

    .feature-card .icon-box img {
        width: 60px;            /* smaller icon */
        height: auto;
    }

    .feature-card h3 {
        font-size: 12px;        /* REDUCED */
        line-height: 1.25;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .feature-card p {
        font-size: 11px;        /* REDUCED */
        line-height: 1.35;
        margin-bottom: 0;
    }

    /* ================================================= */
    /* =============== BIG FEATURE BOXES ================ */
    /* ================================================= */

    .about-feature .col-lg-6,
    .about-feature .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;         /* 2 PER ROW */
    }

    .about-feature-box {
        height: 270px;          /* FIXED SAME SIZE */
        padding: 18px 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }

    .about-feature-box h1 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .about-feature-box p {
        font-size: 13px;
        line-height: 1.5;
    }
}


/* WhatsApp Fixed Square Box */
.whatsapp-box {
    position: fixed;
    right: 0;
    bottom: 70px;

    height: 56px;
    width: 56px;                 /* logo visible before hover */
    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;

    font-size: 28px;
    z-index: 9999;

    border-radius: 6px 0 0 6px;
    overflow: hidden;

    transition: width 0.35s ease;
}

/* WhatsApp Icon (always visible) */
.whatsapp-box i {
    width: 56px;
    text-align: center;
    flex-shrink: 0;
}

/* Text hidden before hover */
.whatsapp-box span {
    white-space: nowrap;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Hover – slide left */
.whatsapp-box:hover {
    width: 170px;
}

/* Show text on hover */
.whatsapp-box:hover span {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-box {
        width: 48px;
        height: 48px;
        bottom: 60px;
    }

    .whatsapp-box i {
        width: 48px;
        font-size: 24px;
    }

    /* Disable hover expand on mobile */
    .whatsapp-box:hover {
        width: 48px;
    }

    .whatsapp-box span {
        display: none;
    }
}

/* Phone Fixed Square Box */
.phone-box {
    position: fixed;
    right: 0;
    bottom: 210px;              /* place above Email */

    height: 56px;
    width: 56px;
    background: #28a745;        /* call green */
    color: #fff;

    display: flex;
    align-items: center;

    font-size: 24px;
    z-index: 9999;

    border-radius: 6px 0 0 6px;
    overflow: hidden;

    transition: width 0.35s ease;
}

/* Icon always visible */
.phone-box i {
    width: 56px;
    text-align: center;
    flex-shrink: 0;
}

/* Text hidden before hover */
.phone-box span {
    white-space: nowrap;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Hover – slide left */
.phone-box:hover {
    width: 150px;
}

/* Show text on hover */
.phone-box:hover span {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .phone-box {
        width: 48px;
        height: 48px;
        bottom: 200px;
    }

    .phone-box i {
        width: 48px;
        font-size: 22px;
    }

    /* Disable expand on mobile */
    .phone-box:hover {
        width: 48px;
    }

    .phone-box span {
        display: none;
    }
}


/* Email Fixed Square Box */
.email-box {
    position: fixed;
    right: 0;
    bottom: 140px;              /* place above WhatsApp */

    height: 56px;
    width: 56px;
    background: #0072c6;        /* email blue */
    color: #fff;

    display: flex;
    align-items: center;

    font-size: 26px;
    z-index: 9999;

    border-radius: 6px 0 0 6px;
    overflow: hidden;

    transition: width 0.35s ease;
}

/* Icon always visible */
.email-box i {
    width: 56px;
    text-align: center;
    flex-shrink: 0;
}

/* Text hidden before hover */
.email-box span {
    white-space: nowrap;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Hover – slide left */
.email-box:hover {
    width: 160px;
}

/* Show text on hover */
.email-box:hover span {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .email-box {
        width: 48px;
        height: 48px;
        bottom: 130px;
    }

    .email-box i {
        width: 48px;
        font-size: 22px;
    }

    /* Disable expand on mobile */
    .email-box:hover {
        width: 48px;
    }

    .email-box span {
        display: none;
    }
}

/* ****************************** */
/******** CONTACT SECTION ********/
/********************************/

#contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #e6f2ff);
}

/* HEADER */
#contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#contact-section h1 {
    font-weight: 700;
    color:#000000;
}

#contact-section p {
    color: #555;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

/* INFO BOX */
.contact-info {
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
}

.contact-info h2 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-info i {
    color: #0d6efd;
    margin-right: 10px;
}

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
}

/* keep original input styles */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

/* textarea */
.contact-form textarea {
    min-height: 110px;
    resize: none;
}

/* focus border */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0d6efd;
}

/* BUTTON */
.contact-btn {
    background: linear-gradient(135deg, #0d6efd, #40f7f7);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

/* BUTTON VISIBLE ON SCROLL */
.contact-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER */
.contact-btn:hover {
    transform: translateY(-3px);
}

/* new wrapper for heading background */
.heading-bg {
    position: relative;
    width: 100%;
    height: 200px;
    padding: 60px 20px;
    background: url("../img/contact-bg.jpg") center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

/* transparent overlay */
.heading-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

/* heading text above overlay */
.heading-bg h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000;
}

/* mobile */
@media (max-width: 576px) {
    .heading-bg {
        padding: 40px 15px;
    }

    .heading-bg h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
}

/* ================= FLOATING LABEL FIX ================= */

/* FLOATING INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

/* INPUT & TEXTAREA (override spacing for floating label) */
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    background: transparent;
}

/* LABEL */
.input-group label {
    position: absolute;
    left: 14px;
    top: 40%;
    transform: translateY(-50%);
    color: #777;
    font-size: 14px;
    pointer-events: none;
    background: #ffffff;
    padding: 0 6px;
    transition: all 0.25s ease;
}

/* FLOAT ON FOCUS OR WHEN FILLED (FIXED) */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -6px;
    font-size: 12px;
    color: #0d6efd;
}

/* BORDER ON FOCUS */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #0d6efd;
}

/********************************/
/******** SCROLL ANIMATION *******/
/********************************/

.slide-left,
.slide-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-left {
    transform: translateX(-60px);
    margin-bottom: 20px;
}

.slide-right {
    transform: translateX(60px);
}

.slide-left.show,
.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* APPLICATION */
.app-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.app-box.show {
    opacity: 1;
    transform: translateY(0);
}


/* ============================
   GOOGLE FONTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500&display=swap');

/* =====================================================
   CERTIFICATION SECTION (SCOPED – SAFE)
===================================================== */
.certification-section {
    padding: 70px 0;
    min-height: 110vh;
    background: #f9fbff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* IMAGE (LEFT) */
.certification-section .cert-image-wrapper {
    position: relative;
}

.certification-section .cert-image-wrapper img {
    width: 70%;
    border-radius: 14px;
    margin-left: 100px;
    background: #fff;
    box-shadow:
        0 25px 50px rgba(13, 110, 253, 0.25),
        0 12px 25px rgba(13, 110, 253, 0.18);
}

/* CONTENT (RIGHT) */
.certification-section .cert-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* 🔑 TITLE AT TOP */
    align-items: flex-start;
    padding-top: 0;
    margin-top: 0;
}

/* BRAND TITLE */
.certification-section .cert-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #000;
}

/* TEXT */
.certification-section .cert-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;

    text-align: justify;
    text-justify: inter-word;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* =====================================================
   SCROLL SLIDE EFFECT – FULLY SCOPED
===================================================== */
.certification-section .slide-img,
.certification-section .slide-content {
    opacity: 0;
}

.certification-section.slide-active .slide-img {
    animation: certImgSlide 1.3s ease forwards;
}

.certification-section.slide-active .slide-content {
    animation: certTextSlide 1.3s ease forwards;
}

/* IMAGE → LEFT TO RIGHT */
@keyframes certImgSlide {
    from {
        transform: translateX(-120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* CONTENT → RIGHT TO LEFT */
@keyframes certTextSlide {
    from {
        transform: translateX(120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 991px) {

    .certification-section {
        min-height: auto;
        padding: 50px 20px;
    }

    .certification-section .cert-image-wrapper img {
        width: 100%;
        margin-left: 0;
    }

    .certification-section .cert-content-wrapper {
        align-items: flex-start;
        margin-top: 30px;
    }

    .certification-section .cert-brand {
        font-size: 34px;
        text-align: left;
    }

    .certification-section .cert-text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }

    /* MOBILE ANIMATION DISTANCE */
    @keyframes certImgSlide {
        from {
            transform: translateX(-30px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes certTextSlide {
        from {
            transform: translateX(30px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}


