/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.999
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */



 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.2px;
}
img.img-fluid.footer-logo {
    width: 30%;
}
iframe {
    border-radius: 10px;
}
    body{
      font-family: Arial, sans-serif;
    }

    /* TOP BAR */
   .topbar {
    background: linear-gradient(90deg, #04747d, #008e92);
    color: #fff;
    padding: 7px 0;
    font-size: 15px;
}

    .topbar a{
      color:#fff;
      text-decoration:none;
      font-weight:500;
    }

    .topbar .icon-box{
      width:28px;
      height:28px;
      background:#fff;
      color:#0f8f98;
      border-radius:4px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      margin-right:10px;
    }

    .top-contact{
      gap:25px;
    }

    /* HEADER */
    .main-header{
      background:#fff;
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link{
      color:#222;
      font-size:18px;
      font-weight:500;
      margin:0 16px;
      transition:0.3s;
    }

    .navbar-nav .nav-link:hover{
      color:#0ea5a8;
    }

    /* BUTTON */
  a.main-btn {
    background: linear-gradient(90deg, #04757e, #009ea3);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
    a.main-btn:hover{
      color:#fff;
      transform:translateY(-2px);
    }

    /* SEARCH BUTTON */
   .search-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #0ea5a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #04757e;
    text-decoration: none;
    transition: 0.3s;
}

    .search-btn:hover{
      background:#0ea5a8;
      color:#fff;
    }

    /* LOGO */
    .logo img{
      width:100px;
    }

    @media(max-width:991px){

      .topbar{
        text-align:center;
      }

      .topbar .row{
        gap:10px;
      }

      .navbar-nav{
        padding-top:20px;
      }

      .navbar-nav .nav-link{
        margin:10px 0;
      }

      .header-actions{
        margin-top:20px;
      }

      .quote-btn{
        padding:14px 28px;
        font-size:16px;
      }

      .search-btn{
        width:60px;
        height:60px;
        font-size:24px;
      }
    }


    /* About Us */

.about-section{
    background:#f5f5f5;
    padding:60px 0;
}

.about-img{
    position:sticky;
    top:30px;
}

.about-img img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.about-content{
    padding-left:40px;
}

.about-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #505050;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
    color: #04747d;
}
.about-text span i {
    color: #04747d;
    font-size: 19px;
}
.skill-item span {
    font-weight: 600;
    font-size: 19px;
    color: #393939;
}
h4.about-text-heading {
    color: #00153a;
}
.about-small-img{
    width:100%;
    border-radius:10px;
    margin-bottom:25px;
}

.about-content h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.about-content p{
    color:#666;
    line-height:1.8;
}

.about-list p{
    margin-bottom:10px;
}

.skill-item{
    margin-top:30px;
}

.progress{
    height:6px !important;
    background:#ddd !important;
    border-radius:0;
    margin-top:10px;
}

.progress-bar {
    background: #041c48 !important;
}

.w-86{
    width:86% !important;
}

.w-95{
    width:95% !important;
}

.w-70{
    width:70% !important;
}

/* MOBILE */
@media(max-width:991px){

    .about-img{
        position:relative;
        top:0;
        margin-bottom:30px;
    }

    .about-content{
        padding-left:0;
    }

    .about-content h2{
        font-size:36px;
    }
}


/* GENOSTIC SECTION */
.genostic-section{
    overflow:hidden;
    background:#f5f5f5;
}
.genostic-r-text{
	font-size: clamp(30px,7vw,100px);
	color: black;
	position: absolute;
	right: 80px;
    top: -35px;
}

.genostic-section .moving-text {
    font-size: 208px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    text-align: center;
    margin: 0;
    background-image: url('images/genostic-bg.avif');
    background-size: cover;
    background-position: center !important;
    background-repeat: no-repeat;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    color: transparent;
    background-attachment: fixed;
    margin: -9px;
}

/* RESPONSIVE */
@media(max-width:1400px){
	.genostic-r-text{
		right: 32px;
    	top: -35px;
	}
}
@media(max-width:1200px){

    .genostic-section .moving-text{
        font-size:160px;
    }
	.genostic-r-text{
	right: 78px;
    top: -29px;
}
}

@media(max-width:768px){

    .genostic-section .moving-text{
        font-size:120px;
    }
    div#mega-menu-wrap-primary {
    width: 50px !important;
    float: right !important;
    margin: 12px 0 0 0 !important;
}
		.genostic-r-text {
        right: 2px;
        top: -18px;
    }
}

@media(max-width:480px){

    .genostic-section .moving-text{
        font-size:60px;
    }
	.genostic-r-text {
        right: 38px;
        top: -12px;
    }
}

/* SERVICES SECTION */
.services-section {
    background: linear-gradient(rgb(0 24 55 / 35%), rgb(0 24 55 / 13%)), url(images/genostic-bg.avif) center center / cover no-repeat;
    padding: 120px 0 0;
    position: relative;
    z-index: 1;
}
.d-none.d-lg-flex.align-items-center.gap-4.header-actions {
    float: right !important;
}
.services-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:-1;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 15px;
}

.services-wrapper {
    border-radius: 10px;
    overflow: hidden;
    /* position: absolute;
    top: 41px; */
}
.service-box{
    padding:45px 35px;
    min-height:325px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.light-box {
    background: #04747d;
}

.dark-box {
    background: #041c48;
}

.service-number {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    position: relative;
    margin-bottom: 30px;
}

.service-number::after{
    content:'';
    width:30px;
    height:2px;
    background:#fff;
    position:absolute;
    left:0;
    bottom:-12px;
}

.service-box h3{
    color:#fff;
    font-size:26px;
    font-weight:700;
    margin-bottom:7px;
}

.service-box p{
    color:#d8e5f0;
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:35px;
}

.tags span{
    border:1px solid rgba(255,255,255,0.25);
    padding:8px 10px;
    border-radius:30px;
    color:#fff;
    font-size:14px;
}

.service-box a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:8px;
}
section.services-section .divider {
    width: 100%;
    height: 1px;
    border-radius: 2px;
    margin: 10px 0 0 0;
    background: #ffffff50;
}
.service-box a:hover{
    opacity:0.8;
}

/* RESPONSIVE */
@media(max-width:991px){

    .section-title h2{
        font-size:40px;
    }

    .service-box{
        min-height:auto;
    }
}

@media(max-width:767px){

    .section-title h2{
        font-size:32px;
    }

    .service-box h3{
        font-size:28px;
    }
}


/* PRODUCTS SECTION */
.products-section{
    padding:60px 0;
    background:#f5f5f5;
}

.products-title{
    margin-bottom:60px;
}

.products-title span{
    color:#6b7280;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.products-title h2{
    font-size:58px;
    font-weight:700;
    color:#007b84;
    margin-top:15px;
    line-height:1.2;
}

.product-item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.product-item img{
    width:100%;
/*     height:420px; */
    object-fit:cover;
    transition:0.5s;
}

.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:30px;
}

.product-overlay h3{
    color:#fff;
    font-size:36px;
    font-weight:700;
}

.product-number{
    width:65px;
    height:65px;
    background:#008b95;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.product-item:hover img{
    transform:scale(1.08);
}

/* RESPONSIVE */
@media(max-width:991px){

    .products-title h2{
        font-size:40px;
    }
}

@media(max-width:767px){

    .products-title h2{
        font-size:30px;
    }

    .product-item img{
        height:350px;
    }

    .product-overlay h3{
        font-size:28px;
    }
}


/* Why-section */
.genostic-why-section{
  background:#0b7b82;
  padding:80px 0 0;
  position:relative;
  overflow:hidden;
}

.genostic-top-content{
  text-align:center;
  color:#fff;
  padding-bottom:60px;
}

.genostic-top-content span{
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
}

.genostic-top-content h2{
  margin-top:20px;
  font-size:44px;
  font-weight:700;
  line-height:1.2;
}

.genostic-feature-wrapper{
  position:relative;
  min-height:550px;
  background-size:cover;
  background-position:center;
  transition:0.5s ease;
}

.genostic-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.genostic-features-row{
  position:relative;
  z-index:2;
  min-height:550px;
}

.genostic-feature-box{
  border-left:1px solid rgba(255,255,255,0.2);
  padding:40px 25px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:end;
  cursor:pointer;
  transition:0.4s;
  backdrop-filter:blur(2px);
}

.genostic-feature-content{
  padding:0 25px;
}

.genostic-feature-box:hover,
.genostic-feature-box.active{
  background:rgba(0,0,0,0.45);
}

.genostic-feature-box h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

.genostic-feature-box p{
  font-size:16px;
  line-height:1.7;
  color:#ddd;
}

.genostic-feature-box a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  margin-top:15px;
  display:inline-block;
}

.genostic-line{
  width:70px;
  height:1px;
  background:rgba(255,255,255,0.5);
  margin:20px 0;
}

/* RESPONSIVE */
@media(max-width:991px){

  .genostic-top-content h2{
    font-size:40px;
  }

  .genostic-feature-box{
    min-height:250px;
    border-bottom:1px solid rgba(255,255,255,0.2);
  }

  .genostic-features-row{
    min-height:auto;
  }
}

/* Marqee-section */

.service-strip{
    background:#00235f;
    overflow:hidden;
}

.marquee{
    width:100%;
    overflow:hidden;
    white-space:nowrap;
}

.marquee-content{
    display:inline-flex;
    align-items:center;
    gap:70px;
    animation:scroll 20s linear infinite;
}

.service-item{
    display:flex;
    align-items:center;
    gap:18px;
    color:#fff;
    font-size:24px;
    font-weight:600;
    white-space:nowrap;
}

.star {
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    padding: 18px 0 0 0;
}
@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .service-item{
        font-size:18px;
        gap:12px;
    }

    .star{
        font-size:28px;
    }

    .marquee-content{
        gap:40px;
    }

}


/* Contact-section */

.contact-section {
    background: #f5f5f5;
    overflow: hidden;
    padding: 60px 0;
}
.contact-image{
    position:relative;
    height:100%;
    min-height:720px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn {
    background: linear-gradient(90deg, #04757e, #009ea3);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    width: 100%;
}
.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    padding: 3px 0 7px 9px;
    border: 1px solid #9a9a9a;
    border-radius: 5px;
}
select.wpcf7-form-control.wpcf7-select {
    width: 100%;
    padding: 5px 0 11px 9px;
    border: 1px solid #9a9a9a;
    border-radius: 5px;
    color: #616161;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 5px 0 11px 9px;
    border: 1px solid #9a9a9a;
    border-radius: 5px;
    color: #616161;
    height: auto !important;
}


/* Hero-section */

.hero-banner-section{
/*     min-height:100vh;
    position:relative;
    background:#071827;
    display:flex;
    align-items:center;
    overflow:hidden; */
	position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.banner-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-bg{
    position: absolute;
    inset: 0;
    background: url('images/banner-genostic.avif') center center / cover no-repeat;
    z-index: 1;
}
h2.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
    color: #ffffff;
}
.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgb(14 43 67 / 53%) 0%, rgb(14 43 67 / 47%) 35%, rgba(14, 43, 67, 0.20) 60%, rgba(14, 43, 67, 0) 100%);
}

.hero-marketing-section .container{
    position:relative;
    z-index:5;
}

.hero-subtitle{
    color:#d6d6d6;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
    margin-bottom:25px;
}

.hero-title{
    color:#fff;
    font-size:78px;
    line-height:1.05;
    font-weight:700;
    margin-bottom:35px;
    max-width:780px;
}

.hero-line-circle{
    margin-bottom:30px;
}

.hero-line-circle .line{
    width:160px;
    height:2px;
    background:#d9d9d9;
    display:block;
}

.hero-btn .arrow{
    font-size:30px;
}

.hero-bottom{
    max-width:950px;
}

.bottom-item h3{
    color:#fff;
    font-size:32px;
    font-weight:400;
    margin-bottom:28px;
}

.bottom-item h3 span{
    opacity:0.7;
    margin-right:10px;
}

.bottom-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.2);
}

.active-line{
    background:#fff;
}

.inactive h3{
    opacity:0.55;
}

@media(max-width:1399px){

    .hero-title{
        font-size:64px;
    }

    .hero-description{
        font-size:22px;
    }

    .hero-btn{
        width:250px;
        height:74px;
        font-size:22px;
    }

    .bottom-item h3{
        font-size:26px;
    }

}

@media(max-width:991px){

    .hero-banner-section{
        padding:120px 0 80px;
    }

    .hero-title{
        font-size:52px;
    }

    .hero-description{
        font-size:19px;
        line-height:1.7;
    }

    .hero-btn{
        margin-bottom:60px;
    }

    .bottom-item h3{
        font-size:24px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:42px;
        line-height:1.15;
    }

    .hero-description{
        font-size:16px;
    }


}

@media(max-width:575px){

    .hero-title{
        font-size:34px;
    }

    .hero-subtitle{
        font-size:12px;
        letter-spacing:2px;
    }

    .hero-description{
        font-size:15px;
    }

    .hero-btn{
        width:200px;
        height:58px;
        font-size:16px;
    }

    .bottom-item h3{
        font-size:18px;
    }

}

/* Feature-section */

.feature-section{
    overflow:hidden;
}

.feature-box{
    min-height:280px;
    padding:50px 40px;
    display:flex;
    gap:35px;
    position:relative;
}

.feature-left{
    background:#0f7e86;
}

.feature-right{
    background:#041c48;
    border-left:1px solid rgba(255,255,255,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #00a2ad;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.dark-icon {
    background: #002c7c;
}

.feature-icon img{
    width:38px;
    filter:brightness(0) invert(1);
}

.feature-content h3{
    color:#fff;
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
}

.feature-line{
    width:150px;
    height:2px;
    background:rgba(255,255,255,0.15);
    position:relative;
    margin-bottom:20px;
}

.feature-line::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:70px;
    height:2px;
    background:#fff;
}

.feature-content p{
    color:rgba(255,255,255,0.85);
    font-size:17px;
    line-height:1.9;
    max-width:500px;
    margin-bottom:35px;
}


@media(max-width:991px){

    .feature-box{
        padding:40px 25px;
        gap:25px;
    }

    .feature-content h3{
        font-size:22px;
    }

    .feature-content p{
        font-size:15px;
    }

}

@media(max-width:767px){

    .feature-box{
        flex-direction:column;
    }

    .feature-icon{
        width:60px;
        height:60px;
    }

    .feature-content h3{
        font-size:20px;
    }

    .feature-arrow{
        font-size:38px;
    }

}
img.img-fluid.contact-img {
    border-radius: 10px;
}
/* Faq-section */

.faq-section {
    background: #041c48;
    padding: 60px 0;
    overflow: hidden;
}
section.faq-section a.main-btn {
    background: linear-gradient(90deg, #e8e8e8, #ffffff);
    color: #001548;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.faq-subtitle{
    color:#fff;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
    display:block;
    margin-bottom:25px;
}

.faq-title{
    color:#fff;
    font-size:78px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:30px;
    max-width:700px;
}

.faq-text{
    color:#fff;
    font-size:24px;
    line-height:1.8;
    max-width:850px;
    margin-bottom:70px;
}

.faq-contact-box{
    background:#0d7f88;
    border-radius:10px;
    padding:55px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.faq-contact-box h3{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin-bottom:15px;
}

.custom-accordion{
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    overflow:hidden;
}

.custom-accordion .accordion-item{
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.custom-accordion .accordion-item:last-child{
    border-bottom:none;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-size: 19px !important;
    font-weight: 500;
    padding: 25px 12px;
    box-shadow: none;
    border: none;
}
.custom-accordion .accordion-button::after{
    display:none;
}
.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #0d7f88fc !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #dee2e633;
}
.custom-accordion .accordion-button.collapsed::before{
    content:"+";
    position:absolute;
    right:35px;
    font-size:42px;
    color:#fff;
    font-weight:300;
}

.custom-accordion .accordion-button:not(.collapsed)::before{
    content:"−";
    position:absolute;
    right:35px;
    font-size:42px;
    color:#fff;
    font-weight:300;
}

.custom-accordion .accordion-body {
    background: #39495b;
    color: #d8d8d8;
    font-size: 16px !important;
    line-height: 1.8;
    padding: 22px 12px;
}

.active-item .accordion-button{
    background:#39495b;
}
h2.about-content {
    font-size: 44px !important;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
}
.faq-box-text h5 {
    color: #fff;
}
@media(max-width:1399px){

    .faq-title{
        font-size:62px;
    }

    .faq-text{
        font-size:20px;
    }

    .faq-contact-box h3{
        font-size:40px;
    }

    .faq-btn{
        width:220px;
        height:75px;
        font-size:24px;
    }

    .custom-accordion .accordion-button{
        font-size:22px;
    }

    .custom-accordion .accordion-body{
        font-size:18px;
    }

}

@media(max-width:991px){

    .faq-section{
        padding:80px 0;
    }

    .faq-title{
        font-size:52px;
    }

    .faq-text{
        margin-bottom:50px;
    }

    .faq-contact-box{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:767px){

    .faq-title{
        font-size:40px;
    }

    .faq-text{
        font-size:16px;
    }

    .faq-contact-box{
        padding:35px 25px;
    }

    .faq-contact-box h3{
        font-size:32px;
    }

    .faq-contact-box p{
        font-size:18px;
    }
    .faq-btn{
        width:200px;
        height:60px;
        font-size:18px;
    }

    .custom-accordion .accordion-button{
        font-size:18px;
        padding:28px 20px;
    }

    .custom-accordion .accordion-button.collapsed::before,
    .custom-accordion .accordion-button:not(.collapsed)::before{
        right:20px;
        font-size:28px;
    }

    .custom-accordion .accordion-body{
        font-size:15px;
        padding:0 20px 30px;
    }

}

/* Testimonial-section */

.testimonial-section{
    background:#f3f3f3;
    padding:60px 0;
    overflow:hidden;
}

.testimonial-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:10px;
}

.testimonial-content{
    padding-left:40px;
}

.testimonial-content h5{
    font-size:38px;
    font-weight:700;
    color:#1f2d3d;
    margin-bottom:10px;
}

.stars{
    color:#ff9800;
    font-size:22px;
    letter-spacing:4px;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-info img{
    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:5px;
    color:#1f2d3d;
}

.client-info span{
    font-size:20px;
    color:#666;
}

.testimonial-carousel .owl-nav{
    position:absolute;
    right:0;
    bottom:-17px;
    display:flex;
    gap:0;
}

.testimonial-carousel .owl-nav button{
    width:65px !important;
    height:65px !important;
    background:#fff !important;
    border:1px solid #ddd !important;
    font-size:28px !important;
    color:#1f2d3d !important;
    transition:0.3s;
}

.testimonial-carousel .owl-nav button:hover{
    background:#0d7f88 !important;
    color:#fff !important;
}

.testimonial-carousel .owl-dots{
    display:none;
}

@media(max-width:991px){

    .testimonial-content{
        padding-left:0;
        padding-top:30px;
    }

    .testimonial-image img{
        height:350px;
    }

    .testimonial-content p{
        font-size:20px;
    }

}

@media(max-width:767px){

    .testimonial-content h5{
        font-size:28px;
    }

    .testimonial-content p{
        font-size:16px;
    }

    .client-info h4{
        font-size:20px;
    }

    .client-info span{
        font-size:15px;
    }

    .testimonial-carousel .owl-nav{
        position:relative;
        margin-top:30px;
        justify-content:center;
    }

}

/* Video-section */

.video-section {
    background: #150c06;
    overflow: hidden;
}

.video-wrapper{
    position:relative;
    overflow:hidden;
}

.video-wrapper img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.video-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-decoration:none;
    z-index:3;
}

.play-circle{
    width:90px;
    height:90px;
    background:rgba(255,255,255,0.92);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    transition:0.4s;
}

.play-circle::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    border-radius:50%;
    background:rgba(255,255,255,0.20);
    animation:pulse 2s infinite;
}

.play-circle i{
    font-size:40px;
    color:#1f2d3d;
    margin-left:6px;
}

.video-play-btn:hover .play-circle{
    transform:scale(1.08);
}

.video-bottom-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    z-index:2;
}

.bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 32%));
}
.video-text {
    position: relative;
    z-index: 2;
    padding: 12px 213px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.video-text .icon{
    width:38px;
    height:38px;
    background:#fff;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d7f88;
    font-size:18px;
}

.video-text a{
    color:#fff;
    font-weight:600;
    text-decoration:underline;
}

.video-text a:hover{
    color:#d8d8d8;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.4);
        opacity:0;
    }

}

@media(max-width:991px){

    .video-wrapper img{
        height:500px;
    }

    .play-circle{
        width:90px;
        height:90px;
    }

    .play-circle::before{
        width:120px;
        height:120px;
    }

    .play-circle i{
        font-size:30px;
    }

    .video-text{
        font-size:18px;
        padding:25px 20px;
    }

}

@media(max-width:767px){

    .video-wrapper img{
        height:350px;
    }

    .play-circle{
        width:75px;
        height:75px;
    }

    .play-circle::before{
        width:100px;
        height:100px;
    }

    .play-circle i{
        font-size:24px;
    }

    .video-text{
        font-size:14px;
        line-height:1.7;
        align-items:flex-start;
    }

    .video-text .icon{
        width:30px;
        height:30px;
        font-size:14px;
    }

}


.footer-section {
  background: #03163f;
  padding: 80px 0 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-text {
  color: #cfd7e6;
  line-height: 1.8;
  max-width: 320px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #d7dcec;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: #04747d ;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #d5dcec;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #13b8b1;
  padding-left: 5px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #13b8b1;
  transform: translateY(-3px);
}
.newsletter-box {
  background: #0d8d93;
  padding: 30px;
  border-radius: 10px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  outline: none;
}

.newsletter-form button {
  border: none;
  background: #03163f;
  color: white;
  padding: 0 25px;
  border-radius: 6px;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #02112d;
}


.certificates img {
  width: 90px;
  margin: 10px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
  text-decoration: none;
  color: #d5dcec;
}

.footer-bottom p {
  color: #d5dcec;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    height: 55px;
  }
}



/* Responsive-css */
@media(max-width:767px){
.topbar {
    display: none !important;
}
button.navbar-toggler {
    margin: 0 0 0 120px;
}
	a.main-btn {
    display: none;
}
	a.search-btn {
    display: none;
}
	.hero-banner-section {
    padding: 0 0;
}
	.services-section {
    padding: 80px 0 45px;
}
	.contact-image {
    min-height: 648px;
}
	.contact-section {
    padding: 0px 0; 
}
	button.owl-prev {
    display: none;
}
	button.owl-next {
    display: none;
}
.testimonial-section {
    padding: 60px 0 0 0;
}
	iframe {
    width: 100%;
}
	.footer-section {
    padding: 50px 0 20px;

}
section.innerpages {
    padding: 30px 0 !important;
}
}
h5#exampleModalLabel {
    font-weight: 600;
    color: #04747d;
}

/* Inner-pages-css */

:root {
  --primary-color: #04747d;
  --secondary-color: #041c48;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --transition: all 0.3s ease;
}
h6.mb-0.text-quality {
    font-weight: 600;
    color: #04747d;
}
.genostic-heading-h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
    color: #073f71;
}

.genostic-card-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border-bottom: 4px solid var(--primary-color);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color) !important;
}
p.lead.text-muted {
    font-size: 18px;
    font-weight: 500;
}
.genostic-card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #00aeba, #001d63);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.genostic-card-icon i{
    color:#fff;
    font-size:32px;
}

/* HEADING */
.genostic-card-box h4{
    font-size:23px;
    font-weight:700;
    margin-bottom:18px;
    color:#111;
}

.genostic-card-box:hover {
  transform: translateY(-10px);
}

.icon-box-round {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.img-fluid-rounded {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* Quick-menu */

#sequence {
    width: 100%;
    float: left;
    background: linear-gradient(82deg, #0f7e86 0%, rgb(0 103 111) 53%, #0f7e86 100%);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #ffffff !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid #041c48;
}
.genostic-feature-content a {
    text-decoration: underline;
}