  :root {
      --primary: #0d9488;       /* Teal */
      --primary-dark: #0f766e;
      --secondary: #14b8a6;
      --dark: #1e293b;
      --light: #f8fafc;
      --gray: #64748b;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      scroll-behavior: smooth;
      /* background-color: var(--light); */
      background: url(./img/Picture2.png) no-repeat center center fixed;
    }

    h1, h2, h3, .display-4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    .navbar {
      background-color: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.8rem 0;
    }

    .nav-link {
      font-weight: 500;
      color: var(--dark) !important;
      position: relative;
      padding: 0.6rem 1.2rem !important;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2.5px;
      bottom: 8px;
      left: 50%;
      background: var(--primary);
      transition: width 0.35s ease, left 0.35s ease;
      transform: translateX(-50%);
    }
     @media (max-width: 768px) {
        .nav-link::after {
            display: none;
        }
       
    }


    .nav-link:hover, .nav-link.active {
      color: var(--primary) !important;
    }

    .nav-link:hover::after, .nav-link.active::after {
      width: 70%;
    }

    /* Hero Section */
    #hero {
      position: relative;
      min-height: 90vh;
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65));
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
    }

    .hero-content h1 {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero-content p {
      font-size: 1rem;
      max-width: 620px;
      margin: 0 auto 2.5rem;
    }

    .btn-teal {
      background: var(--primary);
      color: white;
      padding: 0.9rem 2.2rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-teal:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(13,148,136,0.35);
    }

    /* Section padding */
    section {
      padding: 7rem 0;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;    
       display: flex;
      align-items: center;
      justify-content: center; 
    }

  

    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--primary);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    /* Features */
    .feature-card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem 1.8rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      transition: all 0.35s ease;
      border: 1px solid rgba(13,148,136,0.08);
    
        height: 300px;
    }

    .feature-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .feature-icon {
      font-size: 3.2rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }

    /* Services */
    .service-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

    .service-card .card-body {
      padding: 2rem;
    }
    .service-card .card-body i{
        color: var(--primary);
        margin-bottom: 1.2rem;
    }
    .service-card .card-body a {
     border: 2px solid var(--primary);
     border-radius: 50px;
     padding: 0.8rem 1.8rem;
     font-weight: 600;
     transition: all 0.3s ease;
    }
    .service-card .card-body a:hover {
      background: var(--primary);
      color: white;
      box-shadow: 0 8px 25px rgba(13,148,136,0.3);
    }

    /* Testimonials Carousel */
    .testimonial-carousel .owl-item {
      padding: 0 15px;
    }

    .testimonial-card {
      background: white;
      border-radius: 16px;
      padding: 2.2rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      height: 100%;
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
    }

    .testimonial-img {
      width: 80px;
      height: auto;
      object-fit: cover;
      border: 4px solid var(--primary);
      margin-bottom: 1.2rem;
    }

    .owl-dots {
      margin-top: 2rem !important;
    }

    .owl-dot {
      outline: none !important;
    }

    .owl-dot span {
      width: 12px !important;
      height: 12px !important;
      margin: 0 8px !important;
      background: #d1d5db !important;
      border-radius: 50% !important;
      transition: all 0.3s ease;
    }

    .owl-dot.active span,
    .owl-dot:hover span {
      background: var(--primary) !important;
      transform: scale(1.3);
    }

    /* Contact */
    .contact-info{
        font-size: 1rem;

    }
    .contact-info i{
        color: var(--primary);
        margin-right: 0.8rem;
    }

   .form-control {
  border-radius: 8px;
  border: 1.5px solid #ced4da !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

   textarea.form-control:focus {
        border-color: var(--primary)  !important;
        box-shadow: 0 0 8px rgba(13,148,136,0.2);
         outline: none;
        
    }
    input.form-control:focus {
        border-color: var(--primary) !important ;
        box-shadow: 0 0 8px rgba(13,148,136,0.2);

    }
    form .btn {
      background: var(--primary);
      color: white;
      padding: 0.9rem 2.2rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

   form .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(13,148,136,0.35);
      color: white !important;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 4rem 0 2rem;
    }

    .social-icon {
      font-size: 1.6rem;
      color: var(--primary-dark);
      margin: 0 0.8rem;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      color: var(--primary);
      transform: translateY(-4px);
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .hero-content h1 { font-size: 2.8rem; }
      .hero-content p  { font-size: 1.15rem; }
      section { padding: 5rem 0; }
    }




    /* mission vision */
.tm-container-outer {
    max-width: 1400px;
    margin: 0 auto;    
}


.tm-bg-primary { background: #69c6ba; }
.tm-bg-highlight { background: #c66995; }








.tm-top-bar.active .navbar-expand-lg .navbar-nav .nav-link { padding: 20px 35px; }
.tm-top-bar.active .navbar-brand { font-size: 1.4rem; }

.tm-top-bar .navbar-brand img {
    width: 60px;
    height: auto;
}

.tm-top-bar.active .navbar-brand img { width: 40px; }
.tm-top-bar-bg { height: 119px; }
.tm-top-bar a { color: black; }

.navbar-brand {
	font-size: 2.2rem;    
    text-transform: uppercase;    
}

.navbar {
    font-weight: 700;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.nav-link.active, .nav-link:hover {	color: #69c6ba;	}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(104, 199, 187)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler { 
    border-color: rgb(104, 199, 187);
    border-radius: 0;
    cursor: pointer;
}
button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
 }

.tm-banner-title {
    font-size: 3rem;
    margin-bottom: 10px;
}
.tm-banner-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 1px;
}





.tm-btn {
    cursor: pointer;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;  
    padding: 12px 20px;
}

.tm-btn-white { background: white; }
.tm-btn-white-primary { color: #69c6ba; }
.tm-btn-white-highlight { color: #c66995; }

.tm-btn-white-primary:hover,
.tm-btn-white-primary:focus,
.tm-btn-white-primary:active {
    background: #c66995;
    color: white;
}

.tm-btn-white-highlight:hover,
.tm-btn-white-highlight:focus,
.tm-btn-white-highlight:active {
    background: #69c6ba;
    color: white;
}

.tm-btn-search { width: 100%; }

.tm-btn-search:hover,
.tm-btn-search:active,
.tm-btn-search:focus {
    background: #c66995;
}

.tm-bg-gray { background-color: #efefef; }
.tm-about-text-wrap { max-width: 830px; }



.tm-slideshow-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.tm-slideshow-section-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.tm-slideshow { width: 50%; }

.tm-slideshow-description {
    padding: 50px;
    color: white;
    width: 48%;
    z-index: 100;
    margin-left: -42px;
}

.tm-slideshow-description-left {
    margin-left: auto;
    margin-right: -42px;    
}



#google-map { height: 600px; }

@media screen and (max-width: 1080px) {
    .tm-tab-link-li { width: 25%; }
}

@media screen and (max-width: 1033px) {
    .tm-slideshow-description { width: 55%; }
}

@media screen and (max-width: 991px) {
    .tm-top-bar .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 20px;
        background: white;
    }

    .tm-top-bar, .tm-top-bar-bg { height: auto; }

    #mainNav {
        width: 200px;
        position: absolute;
        top: 53px;
        right: 15px;
        -webkit-box-shadow: 0px 0px 7px 0px rgba(214,214,214,1);
        -moz-box-shadow: 0px 0px 7px 0px rgba(214,214,214,1);
        box-shadow: 0px 0px 7px 0px rgba(214,214,214,1);
    }

    .tm-top-bar {
        height: 60px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
    }

    .tm-top-bar.active .navbar-expand-lg .navbar-nav .nav-link,
    .tm-top-bar .navbar-expand-lg .navbar-nav .nav-link { padding: 15px; }

    .tm-top-bar .navbar-brand { font-size: 1.4rem; }

    .tm-top-bar .navbar-brand img {
        width: 60px;
        height: auto;
    }

    .tm-top-bar .navbar-brand img { width: 40px; }

    .tab-pane {
        margin-left: 20px;
        margin-right: 20px;
    }

    .tm-recommended-description-box { width: 450px; }
}

@media screen and (max-width: 986px) {
    .tm-slideshow-section { flex-direction: column; }
    
    .tm-slideshow,
    .tm-slideshow-description {
        width: 100%;
        max-width: 700px;
    }

    .tm-slideshow-description {        
        margin-right: auto;
        margin-left: auto;
    }

    .slick-prev, .slick-next {
        bottom: 0;
        top: auto;
    }

    .tm-contact-form {
        position: static;
        width: 100%;
    }

    .tm-name-container,
    .tm-email-container {
        width: 49%;
    }

    .tm-email-container {
        margin-left: 0;
        float: right;
    }

}

@media screen and (max-width: 860px) {
    .tm-recommended-description-box { width: 350px; }
}

@media screen and (max-width: 826px) {

    .tm-banner-row-header { padding-top: 120px; }

    .tm-recommended-place-wrap {
        display: flex;
        flex-wrap: wrap;
        max-width: 600px;
        margin: 0 auto 15px;
    }

    .tm-recommended-place {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 270px;
    }

    .tm-recommended-price,
    .tm-recommended-price-link {
        position: relative;
        z-index: 1000;
    }

    .tm-recommended-price { padding-top: 50px; }

    .tm-recommended-price-box {
        width: 270px;
        height: 180px;        
        position: relative;
        overflow: hidden;
        padding-left: 0;
        background-image: none;
    }

    .tm-recommended-price-box:after {
        content: "";
        position: absolute;
        width: 180px;
        height: 270px;
        top: -45px;
        left: 45px;
        z-index: 27;
        background: url(../img/button-curve.png) 0 0 no-repeat;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        background-size: auto 100%;      
    }

    .tm-recommended-price-box,
    .tm-recommended-price-box:hover {
        background-size: cover;
    }

    .tm-recommended-description-box { width: 270px; }
}

@media screen and (max-width: 767px) {
    .tm-banner-row {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .tm-banner-header { margin-top: 100px; }

    .tm-form-group-1,
    .tm-form-group-2,
    .tm-form-group-3 {
        width: 100%;
    }    
}