/********** Template CSS **********/
:root {
    --primary:  #3C8DC0;
    --secondary: #3C8DC0;
    --light: #EDF1FC;
    --dark: #3C8DC0;
}
.color{
    color: #3C8DC0 ;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
}
.color:hover{
    color: white;
}

.fw-medium {
    font-weight: 600 !important;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* optional spacing between items */
  justify-content: center;
}

.image-container {
  width: 200px; /* fixed width */
  text-align: center;
}


@media (max-width: 768px) {
  .image-container {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .image-container {
    width: 100%;
  }
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn-sm-square .fab.fa-linkedin-in {
    font-size: 24px; /* Adjust as needed */
}

/*** Navbar ***/
.top-bar {
    height: auto; /* Adjust this if necessary */
    padding: 10px 0;
}

/* Ensure the image is properly displayed */
#selva1 img {
    position: absolute ;
    display: block;
    max-width: 100%;
    height: auto;
    top: 10px;
    left: 0;

    
}
/* General Styles */
/* General Styles */
/* Reset margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Navbar Styles */
.navbar {
    background-color: #f4f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar .dropdown-toggle::after {
    border: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.container-fluid {
    padding: 0;
}

.navbar-expand-lg {
    padding: 0;
}

.navbar-expand-lg .navbar-nav {
    margin-left: auto;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 10px 0;
    color: #3C8DC0;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    align-items: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbar-light .navbar-nav .nav-link:hover{
    color: white ;
    background-color: #3C8DC0;
}
.nav-containerss {
    display: flex;
    align-items: center;
    padding-bottom: 2px;
}
.nav-containerss:hover{
    
    color: white ;
    background-color: #3C8DC0;
}
.nav-item, .logo {
    margin: 0;
    padding: 0;
}

.logo {
    width: 100px;
    height: 70px;
    padding-top: 5px;
}

/* Dropdown Menu Styles */
.nav-item.dropdown .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 100vw; /* Full width */
    margin-left: -50vw;
    left: 50%;
    transform: translateX(-67.6%);
    border: 1px solid #ccc;
}

.nav-item.dropdown:hover .submenu {
    display: flex;
}

.submenu .row {
    flex-wrap: nowrap; /* Prevent columns from wrapping */
    justify-content: space-between; /* Space out columns evenly */
}

.submenu .column {
    flex: 1;
    margin-right: 20px;
    min-width: 180px; /* Ensure a minimum width for columns */
}

.submenu .column h3 {
    margin-top: 0;
    color: #3C8DC0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.submenu .column ul {
    list-style-type: none;
    padding: 0;
}

.submenu .column ul li a {
    color: black;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.submenu .column ul li a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }

    .logo {
        width: 100px; /* Adjust as necessary */
    }

    .nav-item.dropdown .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        width: 100vw;
        margin-left: -50vw;
        transform: translateX(-50%);
        border: 1px solid #ccc;
    }

    .submenu .row {
        flex-wrap: wrap; /* Allow columns to wrap */
    }

    .submenu .column {
        flex: 1 0 50%; /* Two columns per row */
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s, top 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}
@media (max-width: 991.98px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding: 10px;
        width: auto;
        margin: 0;
        transform: none;
    }

    .navbar .nav-item.show .dropdown-menu {
        display: block;
    }
}

/* Utility Classes */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/659b8e3aac962913174e4de7_Hero\ Image\ 2\ -\ 2_1.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/abstract-wallpaper-preview.jpg) center center no-repeat;
    background-size: cover;
}


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-3.png) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}
.head1{
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
    color: black ;
}
#paddi
{
    padding-top: 51px;
}
.service-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-text {
    font-family: Arial, Helvetica, sans-serif;
    flex: 1;
    color: black;
    padding-right: 20px;
}

.service-image img {
    width: 500px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        text-align: center;
    }

    .service-text {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .service-image img {
        max-width: 100%;
    }
}
.bullet-heading::before {
    content: '• '; /* Unicode character for bullet */
    margin-right: 8px; /* Adjust spacing as needed */
    color: black; /* Color of the bullet, adjust as needed */
}
.head2{
    color: #3C8DC0;
}
.main-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #ccc;
  }
  
  .text-container, .center-text {
    text-align: center;
    color:  #3C8DC0;
    font-size: large;
    font-weight: bolder;
  }
  
  .logo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .logos {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media only screen and (min-width: 768px) {
    .main-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .text-container, .center-text {
      flex: 1;
      text-align: left;
      max-width: none;
    }
  
    .center-text {
      text-align: center;
    }
  
    .logo-container {
      grid-template-columns: repeat(4, 1fr);
    }
  }
.bottom-right-icon {
    position: fixed;
    bottom: 100px;
    right: 47px;
    z-index: 1000; /* Ensure the icon appears above other content */
}
/* Optional styles to customize the icon appearance */
.bottom-right-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.bottom-right-icon img:hover {
    background-color: #0056b3;
}
#map {
    width: 100%;
    height: 600px;
}
.color2{
    color: white;
    font-family: 'Times New Roman', Times, serif;
}
.color3{
    color: white;
    font-weight: bolder;
    font-size: larger;

}

.mains-container {
    width: 100%;
}

.backgroundss-container {
    background-image: url(../img/Contact\ background.jpg);
    background-size: cover;
    padding: 50px;
    color: white;
    display: flex;
    justify-content: space-between;
}

.left-text {
    flex: 1;
}

.right-links {
    flex: 1;
    text-align: right;
}

.right-links ul {
    list-style-type: none;
    padding: 0;
}

.right-links li {
    margin: 10px 0;
    position: relative;
    padding-right: 50px;
}

.right-links li::before {
    content: '➔'; /* Unicode character for arrow */
    position: absolute;
    left: 500px;
    top: 0;
    font-size: 18px;
    color: white;
}

.right-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.content-container {
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #ddd;
}

.content-container .image-side {
    flex: 1;
}

.content-container .image-side img {
    max-width: 100%;
    height: auto;
}

.content-container .text-side {
    flex: 1;
    padding: 20px;
    background-color: #312e2ed5;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.content-container .text-side h3 {
    margin-top: 0;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.content-container .text-side a {
    color: #007bff;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.content-container .text-side a:hover {
    text-decoration: underline;
}
.image-side{
    padding-left: 50px;
}
.containersssss {
    position: relative;
    padding: 20px;
    text-align: center;
}

.containersssss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bgg2.png);
    background-size: cover;
    background-position: center;
    filter: brightness(0.5); /* Adjust brightness of background image */
    z-index: -1; /* Send the background behind */
}

.containersssss h1, .containersssss p {
    color: white; /* Text color */
}
.containerssssss {
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
}

.containerssssss > div {
    margin-bottom: 30px; /* Add space between each pair of heading and content */
}

.containerssssss h2 {
    color: #3C8DC0; /* Heading text color */
}

.containerssssss p {
    color: #666; /* Content text color */
}

.color6{
    color: black;
}
.container7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header2 {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
}
.content2 {
    text-align: center;
    padding: 20px;
}
.content2 img {
    max-width: 100%;
    height: auto;
}
.content2 p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
.email {
    color: green;
    font-weight: bold;
}
.color8{
    color: #3C8DC0;
}
.color9{
    font-size: large;
    font-weight: bold;
    color: #000000;
}
.image-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.image-container {
    text-align: center;
}
.image-container img {
    width: 220px; /* You can adjust the width as needed */
    height: 169px;
}
.image-name {
    margin-top: 5px;
    color:  #3C8DC0;
}
.color10{
    color: white;
    font-size: large;
    font-weight: lighter;
}
.color15{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: large;
    font-weight: lighter;
}
/* General styles */
.container11 {
    display: flex;
    align-items: center;
    width: 100%;
}
.nav-item.bg-white {
    transition: opacity 0.3s ease;
}
.images-container {
    flex: 1;
    display: flex;
    justify-content: center;
}
.images-container img {
    border-radius: 50%;
    width: 350px;
    height: 350px;
}
.text-container11 {
    flex: 2;
    padding: 20px;
}
.container111{
    background-color: #312e2ed5;
    color: white;
}
.color22{
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.font-size-20{
    font-size: 20px; text-justify: auto;
}