

:root {
    --primary: #414141;
    --light: #f0f0f0;
    --dark: #fecd0a;
}

html {
    scroll-behavior: smooth;
}
/** whatsApp ***/
.float{
	position:fixed;
	width:40px;
	height:40px;
	bottom:40px;
	right:23px;
	background-color:#25d366;
	color:#FFF;
	border-radius:10px;
	text-align:center;
    font-size:28px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.my-float:hover{
    color: var(--dark);
	
}

 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: Arial, sans-serif;
    }

        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: Arial, sans-serif;
    }

    /* Loader Overlay */
    #loader {
      position: fixed;
      width: 100%;
      height: 100%;
      background: #f5f5f5; /* Light grey */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      transition: opacity 1s ease, visibility 1s ease;
    }

    /* Hidden state after fade */
    #loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    /* Logo Animation */
    .logo {
      width: 100px;
      height: 100px;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }

    /* Loading text */
    .loading-text {
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
      color: #444;
    }
    .loading-text span {
      color: #FFD700;
    }
/*** Spinner ***/
.spinner {
    width: 55px;
    height: 55px;
    background-image: url(../img/wynicon.jpg);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}

.display-1 {
    font-size: calc(1.1rem + 4.5vw);

}

h1 {
    color: var(--primary);
}

h1,
h2,
.fw-bold {

    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

.text-light {
    color: white !important;

}

footer .text-primary {
    color: var(--dark) !important;
}
/*** fact ***/
.bg-primary {
    background-color: var(--primary) !important;
    
}

.bg-dark {
    background-color: #414141 !important;
}

.bg-light {
    background-color: #f1fbfb !important;
}
.text-primary {
    color: var(--primary) !important;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-dark {
    background-color: var(--primary);
    border-color: var(--dark);
    border-radius: 10px;
}

.btn-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}





.btn-primary {
    
    background-color: var(--dark);
    border-color: var(--dark);
}

.sticky-top.navbar-dark .btn-primary {
    background-color: var(--dark);
    border-color: var(--dark);
}

.btn-primary,
.btn-secondary {
    color: var(--primary);
    box-shadow: inset 0 0 0 50px transparent;
    border-radius: 10px;

border-color: var(--primary);
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
    background-color: var(--dark);
    color: white;
    border-color: var(--dark);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.rounded {
    border-radius: 10px !important;
}


/*** Navbar ***/

.navbar {
    background-color: var(--primary);
}

.navbar-brand {
    margin-right: 0 !important;
}
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

.navbar-dark .navbar-brand img {
    width: 200px;
  
    
}

.navbar-dark .navbar-toggler {
    color: #FFFFFF !important;
    border: none;
    outline: none;
   
}

.navbar-collapse .btn-primary {
    background-color: var(--dark);
    border-color: var(--dark);
    margin-left: 20px;

}



@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    
.navbar-brand img {
    width: 124.5px !important;
}

.navbar-dark .navbar-toggler {
    padding-top: 10px;
}

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
      .navbar-dark .navbar-nav .nav-link {
  
    font-size: 15px;
    margin-left: 5px;
    
}
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .navbar {
        background-color: rgb(65, 65, 65, .8);

    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--primary);
    }




    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--dark);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/


.carousel-caption {
    padding-bottom: 80px;
    z-index: 1;
}

.carousel-caption h1{
    color: #FFFFFF !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }

    .carousel-caption {
    padding-bottom: 1px;
    z-index: 1;

    
}

    .carousel-caption .btn {
    font-size: .5rem !important;
    border-radius: 5px;

    
}

.navbar-dark .navbar-toggler {
    padding-top: 10px;  
}


.navbar-collapse .btn-primary {
    background-color: var(--dark);
    border-color: var(--dark);
    margin-left: 0px;

}



}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 3px;
    left: 0;
    bottom: 0;
    background: var(--dark);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}



.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

/*** Story ***/

.mb-5 {
    margin-bottom: 1rem !important;
}

/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    
}

.service-bg {
    background-color: var(--primary);
    height: 200px;
   align-items: center;
   justify-content: center;
   display: flex;
   
}

.service-bg .text-white {

    font-size: 6em;   
    
}

.service-bg .text-white:hover {

    color: var(--dark) !important;  
    
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.text-uppercase  {
    color: var(--primary);
}

.text-uppercase:hover  {
    color: var(--dark);
}

.text-capitalize {
    color: var(--primary);
}

.text-capitalize:hover  {
    color: var(--dark);
}

/*** Gallery ***/


.story-purpose {
  height: 800px;
  background: url(../img/story-bg.jpg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.tube-purpose {
  height: 800px;
  background: url(../img/tube-bg.jpg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.story-contact {
  height: 600px;
  background: url(../images/contact.jpg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.long-story {
  height: 700px;
}

.story-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.story-wrapper::before {
  clear: both;
  display: block;
  content: '';
}

.story-wrapper .story-details,
.story-wrapper .storu-img {}

.story-wrapper .story-info {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  ;
}

.small-font-title {}

.small-font-title h3 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.big-font-title {
  margin-bottom: 20px;
}

.big-font-title h1 {
  color: #fff;
  font-size: 42px;
  text-align: center;
  text-transform: uppercase;
}

.story-bio {
  width: 55%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 auto 34px auto;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/** service page ***/
.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


mb-0 .plus{
    content: "+";
    position: absolute;
}

#about h5{
    text-align: left;
}

#about h1{
    text-align: left;
}


/** testimonial ***/
 .testimonial-section {
        background: radial-gradient(circle at center, yellow, #fecd0a);
      padding: 60px 0;
    }
    
 
  .section-heading {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .section-heading h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-heading p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            margin: 0 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

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


        .avatar {
            width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin: 0 auto 15px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        .customer-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 5px;
        }

        .customer-role {
            color: #888;
            font-size: 0.95rem;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev {
            left: -80px;
        }

        .carousel-control-next {
            right: -80px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        .carousel-indicators {
            bottom: -60px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: rgba(255,255,255,0.5);
        }

        .carousel-indicators button.active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                margin: 0 10px;
                padding: 30px 20px;
                height: auto;
                min-height: 400px;
            }
            
            .section-heading h2 {
                font-size: 2.2rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }

            .testimonial-text {
            font-size: .7rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        }

            #back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000; /* Ensure it's above other content */
    }