/*

Template 2098 Health

http://www.tooplate.com/view/2098-health

*/

  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

  body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    line-height: inherit;
  }

  h1,h2,h3,h4 {
    letter-spacing: -1px;
  }

  h5 {
    font-weight: 500;
  }

  h1 {
    color: #252525;
    font-size: 5em;
  }

  h2 {
    color: #272727;
    font-size: 3em;
    padding-bottom: 10px;
  }

  h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
  }

  h4 {
    color: #454545;
    font-size: 1.8em;
    padding-bottom: 2px;
  }

  h6 {
    letter-spacing: 0;
    font-weight: normal;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #a5c422;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    margin-top: 0;
  }

  .section-btn {
    background: #0c80df;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    padding: 14px 20px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .section-btn:hover {
    transform: translateY(-5px);
  }

  .text-align-right {
    text-align: right;
  }

  .text-align-center {
    text-align: center;
  }

  .border-top {
    border-top: 1px solid #f2f2f2;
    margin-top: 4em;
    padding-top: 2.5em;
  }

  .btn-gray {
    background: #393939;
  }

  .btn-blue {
    background: #4267b2;
  }

  .news-thumb {
    background: #ffffff;
    border-radius: 10px;
  }
  .news-thumb img {
    border-radius: 10px 10px 0 0;
  }

  .news-info {
    padding: 30px;
    text-align: left;
  }
  .news-info span {
    display: block;
    letter-spacing: 0.5px;
  }
  .news-info h3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .author {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5em;
    margin-top: 2em;
  }
  .author img,
  .author .author-info {
    display: inline-block;
    vertical-align: top;
  }
  .author-info h5 {
    margin-bottom: 0;
  }
  .author img {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }


  #about, #team, #news,
  #news-detail {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #news, #service {
    text-align: center;
  }

  #google-map {
    line-height: 0;
    margin: 0;
    padding: 0;
  }


  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

.spinner {
    position: relative;
}

.spinner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        #071de6,
        #d13bf6,
        #06d46d,
        #b80303,
        #9eff03
    );

    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);

    animation: spinner .9s linear infinite;
}

@keyframes spinner {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  header {
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    height: 45px;
  }

  header .col-md-8 {
    padding-right: 0;
  }

  header p,
  header span {
    font-size: 12px;
    line-height: 24px;
    padding-top: 12px;
  }

  header a,
  header span {
    color: #747474;
  }

  header span {
    font-weight: 500;
    display: inline-block;
    padding: 11px 15px;
  }

  header span.date-icon {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    padding-right: 19px;
    padding-left: 19px;
  }

  header span i {
    color: #105ce9;
    margin-right: 5px;
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .navbar-default {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.075);
    border: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .navbar-default .navbar-brand {
    color: #393939;
    font-weight: 500;
  }

  .navbar-default .navbar-brand .fa {
    color: #a5c422;
  }

  .navbar-default .navbar-nav li.appointment-btn {
    margin: 3px 0 0 20px;
  }

  .navbar-default .navbar-nav li.appointment-btn a {
    background: #1f4ed1;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-default .navbar-nav li.appointment-btn a:hover {
    background: #06e0fd;
    color: #ffffff !important;
  }

  .navbar-default .navbar-nav li a {
    color: #0026ff;
    font-size: 12px;
    font-weight: 1000px;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .navbar-default .navbar-nav > li a:hover {
    color: #393939 !important;
  }

  /* Navigation Links */
.navbar-default .navbar-nav > li > a {
    position: relative;
    color: #393939;
    padding: 15px 20px;
    font-weight: 600;
    transition: color .3s ease;
}

/* Gradient text on hover */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li.active > a {
    background: linear-gradient(90deg, #071de6, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Underline */
.navbar-default .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #071de6, #00c6ff);
    transform: translateX(-50%);
    transition: width .35s ease;
}

/* Show underline on hover */
.navbar-default .navbar-nav > li > a:hover::after {
    width: 80%;
}

/* Keep underline on active(clicked) link */
.navbar-default .navbar-nav > li.active > a::after {
    width: 80%;
}

  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #555555;
    background-color: transparent;
  }

  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    color: #393939;
    background-color: transparent;
  }

  .navbar-default .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background: #393939;
    border-color: transparent;
  }

  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus { 
    background-color: transparent;
  }
 
  /* Brand Container */
.logo-brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-decoration: none;
}

/* Logo Box */
.logo-box{
    width: 85px;
    height: 85px;
    padding: 8px;
    background-image: url("images/yy.PNG");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;

}

/* Logo */
.logo-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Company Name */
.logo-text{
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #071de6;
    text-align: center;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}


  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home h1 {
    color: #ffffff;
    padding-bottom: 10px;
    margin-top: 0;
  }

  #home h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    line-height: inherit;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
  }

  .slider .container {
    width: 100%;
  }

  .slider .owl-dots {
      position: absolute;
      top: 575px;
      width: 100%;
      justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #07f56a;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: rgba(20,20,20,0.2);
    height: 100%;
    color: #fff;
    cursor: e-resize;
  }

  .slider .item {
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 650px;
  }

  .slider .item-first {
    background-image: url(../images/slide\ \(2\).jpg);
  }

  .slider .item-second {
    background-image: url(../images/banner.jpg);
  }
/* =========================
   MAIN SLIDER
========================= */

.slider {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.slider .owl-carousel,
.slider .owl-stage-outer,
.slider .owl-stage,
.slider .owl-item,
.slider .item {
    width: 100%;
    height: 100vh;
    min-height: 650px;
}


/* =========================
   SLIDE 1
========================= */

.item-first {
    position: relative;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("../images/your-background.jpg")
        center center / cover no-repeat;
}


/* =========================
   SLIDE 2
========================= */

.item-water {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* IMAGE */

.water-slide-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}


/* DARK OVERLAY */

.water-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);

    z-index: 2;
}


/* =========================
   TEXT ON BOTH SLIDES
========================= */

.item .caption {
    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;

    transform: translateY(-50%);

    z-index: 3;

    color: white;

    text-align: center;
}


/* HEADING */

.item .caption h3 {
    font-size: 28px;

    font-weight: 600;

    margin-bottom: 10px;

    color: rgb(2, 9, 109);
}


.item .caption h1 {
    font-size: 50px;

    font-weight: 700;

    margin-bottom: 25px;

    color: white;
}


/* PARAGRAPH */

.item .caption p {
    max-width: 900px;

    margin: 10px auto;

    font-size: 17px;

    line-height: 1.7;

    color: white;
}


/* BUTTON */

.item .caption .section-btn {
    margin-top: 20px;

    padding: 14px 30px;

    font-weight: 600;
}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    width: 100%;
    padding: 10px 20px 0;
    background: #f5faf9;
    overflow: hidden;
}


/* =========================================
   SECTION HEADER
========================================= */

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.services-header h2 {
    margin: 0 0 12px;

    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;

    color: #071f3b;
}

.services-header p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;

    color: #53708e;
}


/* =========================================
   MAIN SERVICE CONTAINER
========================================= */

.service-container {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 70px;
}


/* =========================================
   LEFT IMAGE AREA
========================================= */

.service-image-wrapper {
    width: 50%;

    position: relative;

    padding: 8px 45px 8px 45px;
}


/* DOTTED DECORATIVE BORDER */

.service-image-wrapper::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 100%;

    border: 1px dashed #c9e0ef;

    border-radius: 150px 150px 50px 50px;

    z-index: 0;
}


/* IMAGE CONTAINER */

.service-image {
    width: 100%;
    height: 300px;

    position: relative;

    overflow: hidden;

    border-radius: 150px 150px 45px 45px;

    z-index: 1;
}


/* IMAGE */

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* IMAGE HOVER */

.service-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.service-content {
    width: 50%;
}


/* SMALL BLUE LABEL */

.service-label {
    display: block;

    margin-bottom: 12px;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #0864c7;
}


/* SERVICE TITLE */

.service-content h3 {
    margin: 0 0 14px;

    font-family: Arial, sans-serif;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 800;

    color: #071f3b;
}


/* DESCRIPTION */

.service-description {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.55;

    color: #53708e;

    max-width: 500px;
}


/* =========================================
   CHECK LIST
========================================= */

.service-list {
    list-style: none;

    padding: 0;
    margin: 0 0 20px;
}

.service-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 500;

    color: #071f3b;
}


/* GREEN CHECK */

.check-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #00b878;

    font-size: 20px;

    font-weight: bold;
}


/* =========================================
   BOOK INSPECTION BUTTON
========================================= */

.book-inspection-btn {
    display: inline-block;

    padding: 13px 23px;

    background: #ffd600;

    color: #071f3b;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 10px;

    transition: all 0.3s ease;
}


.book-inspection-btn:hover {
    background: #f5c900;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 900px) {

    .service-container {
        gap: 40px;
    }

    .service-image-wrapper {
        padding: 8px 25px;
    }

    .service-content h3 {
        font-size: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .services-section {
        padding: 50px 20px;
    }


    .services-header {
        margin-bottom: 45px;
    }


    .services-header h2 {
        font-size: 27px;
    }


    .services-header p {
        font-size: 14px;
    }


    .desktop-break {
        display: none;
    }


    /* STACK IMAGE AND CONTENT */

    .service-container {
        flex-direction: column;

        gap: 45px;
    }


    .service-image-wrapper {
        width: 100%;

        max-width: 500px;

        padding: 10px 30px;
    }


    .service-image-wrapper::before {
        border-radius: 120px 120px 40px 40px;
    }


    .service-image {
        height: 300px;

        border-radius: 120px 120px 40px 40px;
    }


    .service-content {
        width: 100%;

        max-width: 500px;
    }


    .service-content h3 {
        font-size: 26px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .services-section {
        padding: 40px 15px;
    }


    .services-header h2 {
        font-size: 24px;
    }


    .service-image-wrapper {
        padding: 8px 20px;
    }


    .service-image {
        height: 260px;

        border-radius: 100px 100px 35px 35px;
    }


    .service-content h3 {
        font-size: 24px;
    }


    .service-description {
        font-size: 14px;
    }

}

/*mission and vision*/
.vision-section{

    width:100%;
    height:1100px;

    background:
    linear-gradient(
        rgba(0,0,0,.18),
        rgba(0,0,0,.18)
    ),
    url("../images/VN.PNG") center center/cover no-repeat;

    background-attachment:fixed;

    display:flex;
    align-items:flex-end;

    position:relative;

    overflow:hidden;

}
.vision-content{

    width:100%;

    min-height:360px;

    display:flex;

    align-items:stretch;

}

.vm-card{

    flex:1;

    padding:70px 80px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:rgba(42,55,165,.80);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    transition:.45s ease;

    position:relative;

}
.card-header{

    display:flex;

    align-items:center;

    gap:30px;

    margin-bottom:25px;

}
.card-header img{

    width:85px;

    height:85px;

    object-fit:contain;

}
.card-header h2{

    font-size:52px;

    font-weight:700;

    color:#fff;

    margin:0;

}
.vm-card p{

    color:#fff;

    font-size:18px;

    line-height:1.8;

    margin:15px 0 0 97px;

    max-width:100%;

    overflow-wrap:break-word;

    word-break:break-word;

}

.vm-card:first-child{

    border-right:2px solid rgba(255,255,255,.18);

}
.vm-card:hover{

    background:rgba(2, 12, 97, 0.92);

    transform:translateY(-6px);

}
/*mobile screen*/
@media screen and (max-width:768px){

    .vision-section{

        height:auto;
        min-height:auto;

    }

    .vision-content{

        flex-direction:column;

    }

    .vm-card{

        padding:30px 25px;

        min-height:auto;

    }

    .vm-card:first-child{

        border-right:none;

        border-bottom:1px solid rgba(255,255,255,.2);

    }

    .card-header{

        gap:15px;

    }

    .card-header img{

        width:50px;

        height:50px;

    }

    .card-header h2{

        font-size:28px;

    }

    .vm-card p{

        margin:20px 0 0 0;

        font-size:16px;

        line-height:1.7;

        max-width:100%;

    }

}

/*==============================
LOCATION SECTION
==============================*/
.location-section{

    position:relative;

    width:100%;

    height:850px;

    background:
    linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.15)),
    url("../images/replace.png") center center/cover no-repeat;

    overflow:hidden;

}
/*==============================
OVERLAY
==============================*/

.location-overlay{

    width:92%;
    max-width:1400px;

}

/*==============================
TITLE BUTTON
==============================*/

.location-title{

    display:block;

    width:max-content;

    margin:0 auto 70px;

    padding:22px 80px;

    background:#3147B7;

    color:#fff;

    font-size:52px;

    font-weight:700;

    text-decoration:none;

    text-transform:uppercase;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    transition:.4s;

}

.location-title:hover{

    transform:translateY(-5px);

    background:#243b9b;

}

/*==============================
GRID
==============================*/

.location-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*==============================
CARD
==============================*/

.location-card{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(12px);

    padding:45px;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.location-card:hover{

    transform:translateY(-10px);

}

.location-card h3{

    text-align:center;

    margin-bottom:30px;

}

.location-info{

    display:flex;

    gap:18px;

}

.location-info img{

    width:40px;

    height:40px;

}

.location-info p{

    line-height:1.8;

}

/*=====================================
WHITE GLASS PANEL
======================================*/

.location-glass{

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 260px;

    /* Transparent at the top → White at the bottom */
   background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.945) 0%,
    rgba(255, 255, 255, 0.89) 40%,
    rgba(255, 255, 255, 0.904) 80%,
    #ffffff 100%
);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding: 0 6% 35px;
    box-sizing: border-box;
}

    .location-grid{

        display:flex;

        flex-wrap:nowrap;

        gap:20px;

        overflow-x:auto;

        overflow-y:hidden;

        scroll-behavior:smooth;

        -webkit-overflow-scrolling:touch;

        padding-bottom:15px;

    }

    /* Hide scrollbar */

    .location-grid::-webkit-scrollbar{

        display:none;

    }

    .location-grid{

        scrollbar-width:none;

    }

    .location-card{

        flex:0 0 300px;

        width:300px;

        min-width:300px;

        max-width:300px;

        padding:30px;

    }

    .location-card h3{

        font-size:22px;

    }

    .location-info{

        display:flex;

        align-items:flex-start;

        gap:15px;

    }

    .location-info img{

        width:35px;

        height:35px;

    }

    .location-info p{

        font-size:15px;

        line-height:1.8;

        margin:0;

    }

  }
.location-grid{

    scroll-snap-type:x mandatory;

}

.location-card{

    scroll-snap-align:start;

}

/* ===========================
   MOBILE RESPONSIVENESS
=========================== */
@media screen and (max-width:768px){

    .location-section{
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .location-overlay{
        padding: 0;
    }

    .location-title{
        display: inline-block;
        font-size: 24px;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
    }

    .location-glass{
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px 20px;

        background: linear-gradient(
            to bottom,
            rgba(255,255,255,0),
            rgba(255,255,255,1)
        );

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    /* Stack cards vertically */
    .location-grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .location-card{
        width: 100%;
        padding: 25px 20px;
    }

    .location-card h3{
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .location-info{
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .location-info img{
        width: 50px;
        height: 50px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .location-info p{
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }
}
/* ==========================
   CORE VALUES SECTION
========================== */

.core-values-section{

    width:100%;
    padding:90px 20px;
    background:#ffffff;

}

.core-values-section .container{

    max-width:1250px;
    margin:auto;

}

/* Card */

.core-values-card{

    width:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);

    transition:.45s ease;

}

/* Image */

.core-values-card img{

    width:100%;
    display:block;
    object-fit:cover;

}

/* Hover Effect (same as Location cards) */

.core-values-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.20),
        0 0 30px rgba(7,29,230,.18);

}
/*==========================
        TEAM SECTION
==========================*/

.team-section{

    width:100%;
    padding:100px 20px;

    background:
    linear-gradient(rgba(0,0,0,.25),
    rgba(0,0,0,.25)),
    url("../images/bbb.png")
    center center/cover no-repeat;

}

.team-card{

    max-width:1250px;

    margin:auto;

    background:#fff;

    padding:60px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.team-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;

}

.team-content{

    flex:2;

}

.team-content h1{

    font-size:60px;

    color:#1d2f9d;

    line-height:1.05;

    margin-bottom:25px;

}

.team-content span{

    font-weight:700;

}

.team-content p{

    font-size:18px;

    color:#444;

    line-height:1.8;

    margin-bottom:20px;

}

/* CEO */

.ceo-card{

    width:250px;

    text-align:center;

}

.ceo-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.4s;

}

.ceo-card:hover img{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.22);

}

.ceo-card h3{

    margin-top:15px;

    color:#222;

}

.ceo-card span{

    color:#2846c5;

    font-size:13px;

    font-weight:700;

}

/* TEAM GRID */

.team-grid{

    margin-top:55px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.staff-card{

    text-align:center;

    transition:.4s;

}

.staff-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.staff-card:hover{

    transform:translateY(-10px);

}

.staff-card:hover img{

    box-shadow:0 18px 40px rgba(0,0,0,.22);

}

.staff-card h4{

    margin-top:15px;

    font-size:22px;

}

.staff-card span{

    color:#2846c5;

    font-size:14px;

    font-weight:700;

}
@media(max-width:768px){

.team-card{

    padding:30px;

}

.team-top{

    flex-direction:column;

}

.team-content h1{

    font-size:42px;

}

.ceo-card{

    width:100%;

}

.team-grid{

    grid-template-columns:1fr;

}

.staff-card img{

    height:320px;

}

}
/*=================================
        TARGET MARKET
=================================*/

.target-market-section{

    width:100%;
    padding:100px 20px;

    background:
    linear-gradient(rgba(255,255,255,.18),
    rgba(255,255,255,.18)),
    url("../images/gal.PNG")
    center center/cover no-repeat;

}

.target-market-card{

    max-width:1250px;

    margin:auto;

    background:#fff;

    padding:55px;

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.market-heading{

    margin-bottom:45px;

}

.market-heading h2{

    font-size:60px;

    font-weight:800;

    line-height:1;

    color:#2846c5;

    margin:0;

}

/*======================
        GRID
=======================*/

.market-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

/*======================
      CARD
=======================*/

.market-item{

    background:#fff;

    overflow:hidden;

    transition:.45s ease;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.market-item img{

    width:100%;

    height:135px;

    object-fit:cover;

    display:block;

}

.market-caption{

    background:#f5f5f5;

    padding:14px 10px;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#222;

    line-height:1.15;

}

/* Same hover effect */

.market-item:hover{

    transform:translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.18),
        0 0 30px rgba(40,70,197,.18);

}
/*=================================
     MOBILE RESPONSIVE
=================================*/
@media screen and (max-width:768px){

    .target-market-section{

        padding:60px 15px;

        background-attachment:scroll;

    }

    .target-market-card{

        padding:30px 20px;

    }

    .market-heading{

        text-align:left;

        margin-bottom:30px;

    }

    .market-heading h2{

        font-size:42px;

        line-height:1.05;

    }

    /* Make gallery vertical */
    .market-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:25px;

    }

    .market-item{

        width:100%;

    }

    .market-item img{

        width:100%;

        height:220px;

        object-fit:cover;

        display:block;

    }

    .market-caption{

        padding:18px 15px;

        font-size:18px;

        font-weight:700;

        line-height:1.3;

        text-align:center;

    }

    .market-item:hover{

        transform:translateY(-6px);

    }

}

/*=============================
      WHY CHOOSE SECTION
=============================*/

.why-section{

    width:100%;
    padding:90px 20px;

    background:#f7f7f7;

}

.why-card{

    max-width:1250px;
    margin:auto;

    background:#fff;

    overflow:hidden;      /* joins image and content */

    border-radius:12px;

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

/* Image */

.why-image{

    width:100%;
    line-height:0;       /* removes tiny white gap */

}

.why-image img{

    width:100%;
    display:block;

}

/* Content */

.why-content{

    padding:60px;

    background:#fff;

    margin:0;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;

}

.why-item{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;

}

.why-item i{

    color:#2E46A8;
    font-size:26px;

}

.why-item span{

    font-size:18px;
    color:#333;
    line-height:1.5;

}
@media (max-width:768px){

    .why-section{

        padding:60px 15px;

    }

    .why-content{

        padding:30px 20px;

    }

    .why-grid{

        grid-template-columns:1fr;

        gap:0;

    }

    .why-item span{

        font-size:17px;

    }

}
/*=============================
      CONTACT SECTION
=============================*/

.contact-section{

    width:100%;
    padding:90px 20px;

    background:#f5f5f5;

}

.contact-wrapper{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

    overflow:hidden;

}

/* LEFT IMAGE */

.contact-image{

    overflow:hidden;

}

.contact-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.contact-image:hover img{

    transform:scale(1.05);

}

/* RIGHT PANEL */

.contact-info{

    background:#2D3F9F;

    padding:70px 60px;

    color:#fff;

}

.contact-info h2{

    font-size:56px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:45px;

    color:#fff

}

/* Motto Ribbon */
#banner{
    position: relative;
    width: 100%;
    background: #66696d;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: visible;
}

#banner .label{
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 2px;
    opacity: 0.9;
    vertical-align: middle;
}

#banner .text{
    font-size: 22px;
    font-weight: 800;
    vertical-align: middle;
}

/* Folded ribbon corner */
#banner::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 32px solid transparent;
    border-top: 14px solid #3f4245;
}

/* Mobile */
@media (max-width:768px){

    #banner{
        padding:12px 15px;
    }

    #banner .label{
        display:block;
        margin-bottom:4px;
        font-size:10px;
    }

    #banner .text{
        display:block;
        font-size:16px;
    }

    #banner::after{
        border-left:24px solid transparent;
        border-top:12px solid #3f4245;
    }
}

/* Responsive */
@media (max-width: 768px){
    #banner{
        padding: 12px 15px;
    }

    #banner p{
        font-size: 15px;
        line-height: 1.5;
    }
}
/* CONTACT BOX */

.contact-box{

    border:1px solid rgba(255,255,255,.35);

}

/* ITEMS */

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:18px 25px;

    border-bottom:1px solid rgba(255,255,255,.25);

    transition:.4s;

}

.contact-item:last-child{

    border-bottom:none;

}

.contact-item:hover{

    background:rgba(255,255,255,.12);

    padding-left:35px;

}

.contact-item i{

    width:40px;

    text-align:center;

    font-size:24px;

    color:#ff5d5d;

}

.contact-item p{

    margin:0;

    color:#fff;

    font-size:17px;

    line-height:1.6;

}
@media screen and (max-width:768px){

.contact-section{

    padding:60px 15px;

}

.contact-wrapper{

    grid-template-columns:1fr;

}

.contact-image{

    height:350px;

}

.contact-info{

    padding:35px 25px;

}

.contact-info h2{

    font-size:38px;

}

.contact-item{

    padding:16px;

}

.contact-item p{

    font-size:15px;

}

}
  /*---------------------------------------
     SERVICE              
  -----------------------------------------*/

  #service {
    background: #a5c422;
  }

  #service h2,
  #service h4 {
    color: #ffffff;
  }

  #service p {
    color: #d9d9d9;
  }

  #service .service-thumb {
    padding: 0 22px;
  }

  #service .fa {
    font-size: 50px;
    margin-bottom: 10px;
    background: #ffffff;
    color: #a5c422;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 100%;
  }


  /*---------------------------------------
      NEWS             
  -----------------------------------------*/

  #news, #news-detail {
    background: #f9f9f9;
  }

  #news-detail blockquote {
    margin: 30px 0;
  }

  .news-detail-thumb .news-image img {
    border-radius: 10px;
  }

  .news-detail-thumb h3 {
    margin-bottom: 8px;
  }

  .news-image {
    margin-bottom: 30px;
    position: relative;
  }

  .news-image img {
    width: 100%;
  }

  .news-detail-thumb ul {
    margin: 32px 12px 22px 0px;
  }

  .news-detail-thumb ul li {
    list-style: circle;
    font-weight: normal;
    padding: 6px 12px 6px 0px;
  }

  .news-sidebar {
    margin-top: 16px;
  }

  .news-social-share {
    text-align: center;
    padding-top: 22px;
  }

  .news-social-share .btn {
    border-radius: 100px;
    border: none;
    font-size: 10px;
    font-weight: 600;
    margin: 2px 6px;
    padding: 8px 14px;
  }

  .news-social-share .btn-primary {
    background: #3b5998;
  }

  .news-social-share .btn-success {
    background: #1da1f2;
  }

  .news-social-share .btn-danger {
    background: #dd4b39;
  }

  .news-social-share a .fa {
    padding-right: 4px;
  }

  .recent-post {
    padding-top: 2px;
    padding-bottom: 18px;
  }

  .recent-post .media img {
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin-right: 5px;
  }

  .recent-post .media-heading {
    font-size: 16px;
    font-weight: 500;
    line-height: inherit;
    margin-top: 5px;
  }

  .news-categories {
    margin-top: 8px;
  }

  .news-categories li a {
    color: #2b2b2b;
  }

  .news-ads {
    background: #ffffff;
    border-right: 4px solid #2b2b2b;
    padding: 42px;
    text-align: center;
    margin: 26px 0 26px 0;
  }

  .news-ads.sidebar-ads {
    border-left: 4px solid #2b2b2b;
    border-right: 0px;
  }

  .news-ads h4 {
    font-size: 18px;
  }

  .news-tags h4 {
    padding-bottom: 6px;
  }

  .news-categories li,
  .news-tags li {
    list-style: none;
    display: inline-block;
    margin: 4px;
  }

  .news-tags li a {
    background: #393939;
    border-radius: 50px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    float: left;
    min-width: 30px;
    padding: 6px 12px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .news-tags li a:hover {
    background: #4267b2;
  }



  /*---------------------------------------
      APPOINTMENT             
  -----------------------------------------*/

  #appointment {
    padding-top: 100px;
  }

  #appointment label {
    color: #393939;
    font-weight: 500;
  }

  #appointment .form-control {
    background: #f9f9f9;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    transition: all ease-in-out 0.4s;
  }

  #appointment input,
  #appointment select {
    height: 45px;
  }

  #appointment button#cf-submit {
    background: #a5c422;
    color: #ffffff;
    font-weight: 600;
    height: 55px;
  }

  #appointment button#cf-submit:hover {
    background: #393939;
    color: #ffffff;
  }


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  footer h4 {
    padding-bottom: 5px;
  }

  footer a {
    color: #757575;
  }

  footer a:hover {
    color: #4267b2;
  }

  .contact-info {
    padding-top: 10px;
  }

  .contact-info .fa {
    background: #393939;
    border-radius: 100%;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 2px;
  }

  .latest-stories {
    margin-bottom: 20px;
  }

  .stories-image,
  .stories-info {
    display: inline-block;
    vertical-align: top;
  }

  .stories-image img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
  }

  .stories-info {
    margin-left: 15px;
  }

  .stories-info h5 {
    margin-bottom: 2px;
  }

  .stories-info span {
    color: #858585;
    font-size: 12px;
  }

  .opening-hours p {
    line-height: 18px;
  }

  .opening-hours span {
    font-weight: 500;
    display: inline-block;
    padding-left: 10px;
  }

  .copyright-text p,
  .footer-link a {
    color: #858585;
    font-size: 12px;
    font-weight: 500;
  }

  .footer-link a {
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    margin-top: 4px;
  }

  .angle-up-btn {
    position: relative;
    bottom: 4em;
    display: block;
  }

  .angle-up-btn a {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 3px;
    font-size: 20px;
    color: #393939;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .angle-up-btn a:hover {
    background: #4267b2;
    color: #ffffff;
    transform: translateY(-5px);
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #464646;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
  }

  .social-icon li a:hover {
    background: #4267b2;
    color: #ffffff;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {
    h1 {
      font-size: 4em;
    }
    h2 {
      font-size: 2.5em;
    }
    h3 {
      font-size: 1.5em;
    }

    header {
      height: inherit;
    }
    header span.date-icon {
      border: 0;
      padding-right: 0;
      padding-left: 0;
    }
    header span.email-icon {
      padding-top: 0;
    }

    .navbar-default .navbar-nav li a {
      padding-right: 15px;
      padding-left: 15px;
    }
  }

  @media only screen and (max-width: 992px) {
    .slider .item {
      background-position: center;
    }

    header {
      padding-bottom: 10px;
    }
    header .text-align-right {
      text-align: left;
    }
    header span {
      padding-top: 0;
      padding-left: 0;
      padding-bottom: 0;
    }
  }

  @media only screen and (max-width: 767px) {
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
      border-color: transparent;
    }
    .navbar-default .navbar-nav li.appointment-btn {
      margin-left: 15px;
    }
    .navbar-default .navbar-nav li a {
      display: inline-block;
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .news-sidebar {
      margin-top: 2em;
    }

    #appointment-form {
      padding-top: 4em;
      padding-bottom: 4em;
    }

    footer {
      padding-top: 60px;
      padding-bottom: 0;
    }
    .footer-thumb {
      padding-bottom: 10px;
    }

    .border-top {
      text-align: center;
    }

    .copyright-text {
      margin-top: 10px;
    }

    .angle-up-btn {
      bottom: 10em;
    }
  }

  @media only screen and (max-width: 639px) {
    h1 {
      font-size: 3em;
      line-height: 1.2em;
    }
    h2 {
      font-size: 2.1em;
    }
    h4 {
      font-size: 1.4em;
    }

    #home h3 {
      font-size: 11px;
      letter-spacing: 1px;
    }

  }
/* =========================================
   CORPORATE CLEANING SECTION
========================================= */

.corporate-section {
    width: 100%;
    padding: 70px 20px;

    background: #f5faf9;

    overflow: hidden;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.corporate-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.corporate-content {
    width: 52%;
}


/* BLUE SMALL LABEL */

.corporate-label {
    display: block;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #0864c7;
}


/* MAIN TITLE */

.corporate-content h2 {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;

    color: #071f3b;
}


/* DESCRIPTION */

.corporate-description {
    max-width: 560px;

    margin: 0 0 25px;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.6;

    color: #53708e;
}


/* =========================================
   CHECK LIST
========================================= */

.corporate-list {
    list-style: none;

    padding: 0;
    margin: 0 0 25px;

}


.corporate-list li {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    color: #071f3b;
}


/* GREEN CHECK */

.corporate-check {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 20px;

    color: #00b878;

    font-size: 21px;

    font-weight: 700;
}


/* =========================================
   BLUE BUTTON
========================================= */

.corporate-btn {
    display: inline-block;

    padding: 15px 28px;

    background: #2878d8;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 10px;

    box-shadow: 0 5px 12px rgba(0, 80, 180, 0.18);

    transition: all 0.3s ease;
}


.corporate-btn:hover {
    background: #1768c8;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 8px 18px rgba(0, 80, 180, 0.25);
}


/* =========================================
   RIGHT IMAGE AREA
========================================= */

.corporate-image-wrapper {
    width: 48%;

    min-height: 400px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   DOTTED DECORATIVE BORDER
========================================= */

.corporate-image-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    border: 2px dashed #c9e0ef;

    border-radius: 45% 55% 45% 55%;

    transform: rotate(-4deg);

    z-index: 0;
}


/* =========================================
   IMAGE
========================================= */

.corporate-image {
    width: 78%;

    height: 380px;

    position: relative;

    overflow: hidden;

    border-radius: 48% 52% 45% 55%;

    z-index: 1;
}


.corporate-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* IMAGE HOVER */

.corporate-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 900px) {

    .corporate-container {
        gap: 40px;
    }


    .corporate-content h2 {
        font-size: 29px;
    }


    .corporate-description {
        font-size: 15px;
    }


    .corporate-list li {
        font-size: 14px;
    }


    .corporate-image {
        width: 85%;
        height: 350px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .corporate-section {
        padding: 60px 20px;
    }


    .corporate-container {
        flex-direction: column;

        gap: 50px;
    }


    /* TEXT FIRST */

    .corporate-content {
        width: 100%;

        max-width: 600px;

        order: 1;
    }


    /* IMAGE SECOND */

    .corporate-image-wrapper {
        width: 100%;

        max-width: 550px;

        min-height: 350px;

        order: 2;
    }


    .corporate-image {
        width: 80%;

        height: 330px;
    }


    .corporate-content h2 {
        font-size: 28px;
    }


    .corporate-description {
        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .corporate-section {
        padding: 45px 15px;
    }


    .corporate-label {
        font-size: 12px;
    }


    .corporate-content h2 {
        font-size: 25px;
    }


    .corporate-description {
        font-size: 14px;

        line-height: 1.6;
    }


    .corporate-list li {
        align-items: flex-start;

        font-size: 14px;

        line-height: 1.5;
    }


    .corporate-image-wrapper {
        min-height: 290px;
    }


    .corporate-image {
        width: 85%;

        height: 280px;
    }


    .corporate-btn {
        width: 100%;

        text-align: center;

        padding: 14px 15px;
    }

}
/* =========================================
   FOUNDER SECTION
========================================= */

.founder-section {
    width: 100%;

    padding: 45px 30px;

    background: #f4faf9;

    overflow: hidden;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.founder-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 55px;
}


/* =========================================
   LEFT IMAGE
========================================= */

.founder-image-container {
    width: 38%;

    flex-shrink: 0;
}


/* IMAGE BOX */

.founder-image {
    width: 100%;

    height: 470px;

    overflow: hidden;

    border-radius: 20px;

    border: 3px solid #ffffff;

    box-shadow:
        0 8px 20px rgba(0, 70, 100, 0.15);

    background: #eeeeee;
}


/* IMAGE */

.founder-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}


/* IMAGE HOVER */

.founder-image:hover img {
    transform: scale(1.03);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.founder-content {
    flex: 1;

    padding-top: 0;
}


/* =========================================
   BADGE
========================================= */

.founder-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 15px;

    margin-bottom: 28px;

    background: #2878d8;

    color: #ffffff;

    border-radius: 20px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    box-shadow:
        0 3px 8px rgba(0, 90, 200, 0.2);
}


/* YELLOW DOT */

.badge-dot {
    width: 7px;

    height: 7px;

    background: #ffd600;

    border-radius: 50%;

    display: inline-block;
}


/* =========================================
   FOUNDER NAME
========================================= */

.founder-content h2 {
    margin: 0 0 8px;

    color: #071f3b;

    font-family: Arial, sans-serif;

    font-size: 36px;

    line-height: 1.1;

    font-weight: 800;
}


/* =========================================
   POSITION
========================================= */

.founder-content h3 {
    margin: 0 0 27px;

    color: #0871df;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================
   INTRODUCTION
========================================= */

.founder-intro {
    max-width: 680px;

    margin: 0 0 25px;

    color: #53708e;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================
   ACHIEVEMENTS
========================================= */

.founder-achievements {
    width: 100%;

    margin-bottom: 25px;
}


/* EACH ACHIEVEMENT */

.achievement-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 13px;
}


/* ICON CIRCLE */

.achievement-icon {
    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e1f0f2;

    color: #0878dc;

    font-size: 18px;

    font-weight: 700;
}


/* ACHIEVEMENT TEXT */

.achievement-item p {
    margin: 4px 0 0;

    color: #071f3b;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.45;
}


/* BOLD TEXT */

.achievement-item strong {
    font-weight: 700;
}


/* ITALIC TEXT */

.achievement-item em {
    font-style: italic;
}


/* =========================================
   BUTTON CONTAINER
========================================= */

.founder-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;
}


/* =========================================
   CONNECT BUTTON
========================================= */

.connect-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 51px;

    padding: 0 26px;

    background: #ffd600;

    color: #071f3b;

    border-radius: 10px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.connect-btn:hover {
    background: #f2c900;

    color: #071f3b;

    transform: translateY(-2px);
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 51px;

    padding: 0 25px;

    background: transparent;

    color: #04f755;

    border: 1.5px solid #04fd4f;

    border-radius: 10px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.whatsapp-btn:hover {
    background: #03f771;

    color: #ffffff;
}


/* WHATSAPP ICON */

.whatsapp-icon {
    font-size: 18px;

    line-height: 1;
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 900px) {

    .founder-section {
        padding: 50px 20px;
    }


    .founder-container {
        gap: 35px;
    }


    .founder-image {
        height: 420px;
    }


    .founder-content h2 {
        font-size: 31px;
    }


    .founder-content h3 {
        font-size: 14px;
    }


    .founder-intro {
        font-size: 15px;
    }


    .achievement-item p {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .founder-section {
        padding: 55px 20px;
    }


    .founder-container {
        flex-direction: column;

        gap: 40px;
    }


    /* IMAGE */

    .founder-image-container {
        width: 100%;

        max-width: 450px;
    }


    .founder-image {
        height: 480px;
    }


    /* CONTENT */

    .founder-content {
        width: 100%;

        max-width: 600px;
    }


    .founder-content h2 {
        font-size: 30px;
    }


    .founder-content h3 {
        line-height: 1.5;
    }


    /* BUTTONS */

    .founder-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .connect-btn,
    .whatsapp-btn {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .founder-section {
        padding: 40px 15px;
    }


    .founder-image {
        height: 420px;

        border-radius: 15px;
    }


    .founder-badge {
        font-size: 10px;

        margin-bottom: 20px;
    }


    .founder-content h2 {
        font-size: 27px;
    }


    .founder-content h3 {
        font-size: 13px;

        letter-spacing: 0.5px;
    }


    .founder-intro {
        font-size: 14px;

        line-height: 1.6;
    }


    .achievement-item p {
        font-size: 14px;
    }

}
/* =========================================
   BUSINESS PHILOSOPHY HERO
========================================= */

.philosophy-hero {
    width: 100%;
    min-height: 420px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            #123fc4 0%,
            #0a2ca8 45%,
            #061d82 100%
        );
}


/* =========================================
   MAIN CONTENT
========================================= */

.philosophy-content {
    position: relative;

    z-index: 5;

    width: 100%;

    padding: 40px 20px;

    text-align: center;
}


/* =========================================
   H1
========================================= */

.philosophy-content h1 {
    margin: 0;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: clamp(32px, 5vw, 65px);

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1.15;

    text-transform: uppercase;
}


/* =========================================
   DIVIDER
========================================= */

.philosophy-divider {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin: 25px auto 22px;
}


.philosophy-divider span {
    width: 50px;

    height: 3px;

    background: #1685ff;

    border-radius: 10px;
}


.philosophy-divider i {
    width: 8px;

    height: 8px;

    display: block;

    background: #1685ff;

    border-radius: 50%;
}


/* =========================================
   PARAGRAPH
========================================= */

.philosophy-content p {
    margin: 0;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: clamp(18px, 2vw, 28px);

    font-weight: 400;

    letter-spacing: 0.3px;

    line-height: 1.5;
}


/* =========================================
   TOP DECORATIVE WAVE
========================================= */

.philosophy-hero::before {
    content: "";

    position: absolute;

    top: -180px;

    left: -5%;

    width: 110%;

    height: 320px;

    background: #1046d1;

    border-radius: 0 0 50% 50%;

    transform: rotate(-2deg);

    opacity: 0.7;
}


/* =========================================
   BOTTOM DECORATIVE WAVE
========================================= */

.philosophy-hero::after {
    content: "";

    position: absolute;

    bottom: -190px;

    left: -5%;

    width: 110%;

    height: 320px;

    background: #1046d1;

    border-radius: 50% 50% 0 0;

    transform: rotate(-3deg);

    opacity: 0.8;
}


/* =========================================
   DECORATIVE CIRCLES
========================================= */

.philosophy-hero {
    isolation: isolate;
}


/* LEFT CIRCLE */

.philosophy-content::before {
    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    left: -180px;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(30, 90, 220, 0.35);

    z-index: -1;
}


/* RIGHT CIRCLE */

.philosophy-content::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -200px;

    top: 30%;

    border-radius: 50%;

    background: rgba(30, 90, 220, 0.3);

    z-index: -1;
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .philosophy-hero {
        min-height: 350px;
    }


    .philosophy-content {
        padding: 40px 20px;
    }


    .philosophy-content h1 {
        font-size: 34px;

        line-height: 1.2;
    }


    .philosophy-content p {
        font-size: 18px;

        line-height: 1.5;
    }


    .philosophy-divider {
        margin: 20px auto;
    }


    .philosophy-divider span {
        width: 35px;
    }

}
.contact-info p {
       color: #fff;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media screen and (max-width: 480px) {

    .philosophy-hero {
        min-height: 320px;
    }


    .philosophy-content h1 {
        font-size: 28px;
    }


    .philosophy-content p {
        font-size: 16px;
    }


    .philosophy-divider span {
        width: 30px;
    }

}