


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009961; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: white;  /* The default color of the main navmenu links */
  --nav-hover-color: #009961; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #009961; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

html{
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
 
  font-family: 'Times New Roman', Times, serif;
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: rgb(53, 166, 204);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  
}

h1{
  font-size: 56px;
 
}
h2{
  font-size: 48px;
 
}
h3{
  font-size: 45px;
 
}
h4{
  font-size: 32px;
}
p{
    font-size: 20px;
  
    letter-spacing: normal; /* Reset to normal */
    word-spacing: normal; 
   
    
}
main{
  overflow: hidden;
}
/*--------------------------------------------------------------
# header section
--------------------------------------------------------------*/



header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
 
  z-index: 999999;
  transition: 0.3s ease; 
  background-color: #1a1a1a;
 

}

.navmenu{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
}

.logo img {
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
  
}

.top-square-bottom-semicircle {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px; /* This height is for the square */
  background-color: #0579ba;
  text-align: center;
  border-radius: 0 0 0 0px;
  box-shadow: 0 4px 5px rgba(4, 90, 141, 0.5);

  
}
.logo1{
background-color: white;
}
.top-square-bottom-semicircle.logo1::after{
  background-color: white;
  }

.top-square-bottom-semicircle::after {
  content: '';
  position: absolute;
  bottom: -50px; /* Position the semi-circle just below the square */
  left: 0;
  width: 90px;
  height: 90px; /* Height of the semi-circle */
  background-color: #0579ba;
  border-radius: 0 0 100px 100px; /* Create the semi-circle */
  box-shadow: 0 4px 5px rgba(4, 90, 141, 0.5);
}

.top-square-bottom-semicircle img {
  width: 100px; /* Adjust the logo size */
  height: auto;
  z-index: 1;
  position: relative; /* Keeps the image on top of the shape */
 
 
}


/* Navigation Menu Items */
.navmenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  
}

.navmenu li {
  position: relative;
  margin: 0 15px;
}

.navmenu a {
  text-decoration: none;
  color: rgb(146, 142, 142);
  
  font-size: 17px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-contact a{
  color: white;
}
.navmenu  a.active{
  color: #0579ba;
}
.nav-contact a.active{
  color: black;
}

.navmenu .nav-contact a:hover,
.navmenu .nav-contact a.active {
  color: #0579ba; /* Blue color for hover and active state */
}

/* Dropdown Menu Styles */
.navmenu .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 10px;
  list-style: none;
  margin: 0;
  width: auto;
}

.navmenu .dropdown:hover ul,
.navmenu .dropdown.show ul {
  display: block;
}

.navmenu .dropdown ul li {
  margin: 0;
}

.navmenu .dropdown ul li a {
  color: #333;
  padding: 5px 10px;
  display: block;
  font-size: 14px;
  text-decoration: none;
}

.navmenu .dropdown ul li a:hover {
  background-color:#0579ba; /* Light gray background on hover */
  color: white;
}





/* Responsive styles */

@media (max-width: 999px) {
  .navmenu ul {
      display: none; /* Hide menu by default */
      flex-direction: column; /* Stack items vertically */
      width: 100%; /* Full width */
      background-color: #fff; /* Background color */
     
      position: absolute; /* Position it */
      top: 140px; /* Adjust based on header height */
      left: 0;
      z-index: 1000; /* Make sure it appears above other elements */
  }
  .nav-contact a {
    color: black;
}
.nav-contact a.active {
  color: #0579ba;
}
  .navmenu ul.active {
      display: flex; /* Show menu when active */
  }

  .mobile-nav-toggle {
      display: block; /* Show mobile toggle */
      font-size: 45px; /* Adjust size as needed */
      margin-left: 25px; /* Space for toggle icon */
      cursor: pointer; /* Pointer cursor */
      color: white;
  }
}



@media (min-width: 999px) {
  .mobile-nav-show,
  .mobile-nav-hide, .mobile-nav-toggle {
      display: none;
  }
}

@media (max-width: 999px) {
  .mobile-nav-show,
  .mobile-nav-hide, .mobile-nav-toggle {
      display: block;
  }
}
@media (max-width: 999px) {
   header .social-icons img{
      display:none;
  }
  footer .social-icons{
    display: none;
  }
}

@media (max-width: 600px) {
  
  .navmenu .dropdown ul{
    left: -70px;
  }
}



.yt_outer{
 

  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt_outers{
 

  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer{
 background-color: #1a1a1a;
 
  
  
}
footer p{
  font-size: 17px;
  color: rgb(146, 142, 142);
}
footer p a{
  color: rgb(146, 142, 142);
}
footer .social-icons{
  position: fixed;
  bottom: 30px;
  left: 50%;
 display: flex;
 align-items: center;
  transform: translateY(50%);
  display: none;
  
}
footer .additional-icons {
  flex-direction: row-reverse;
  display: none;
}

footer p a:hover {
  color: white; /* Change this to your desired hover color */
}
footer .main-icon {
 
  cursor: pointer;
  transition: all 1s ease-in;
}

 footer .additional-icons {
  position: fixed;
  left: 45%;
 bottom: 30px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in;
 
}
 footer .social-icons:hover .additional-icons,
.additional-icons:hover {
    opacity: 1;
    transition: opacity 2s ease-in;
   
}

/* Hide main icon when hovering over it */
 footer .social-icons:hover .main-icon {
    opacity: 0; /* Fade out main icon */
    transition: opacity 2s ease-in;
    
}

 footer .additional-icons a {
    display: inline-block;
   
    opacity: 1; /* Keep opacity for icons */
    transition: opacity 2s ease-in;
}

 footer .additional-icons a:hover {
    opacity: 0.8;
    transition:  2s ease-in;
}
@media (min-width: 1000px) {
  footer .logo_foot{
    padding-right: 160px;
  }
  footer .address{
    padding-left: 40px;
  }
  footer .email{
    padding-left: 40px;
  }
  footer .links{
    padding-left: 40px;
  }
}
@media (max-width: 800px) {
  footer .social-icons{
    bottom: 10px;
    left: 45%;
    align-items: center;
  }
  footer .additional-icons {
    left: -50%;
    bottom: 30px;
   }
}
@media (max-width: 400px) {
  footer .social-icons{
   
    left: 42%;
    font-size: 35px;
   
  }
  footer .additional-icons {
   left: -50%;
   bottom: 30px;
  }
}
@media (max-width: 780px) {
  footer img{
     margin-bottom: 40px;
  }
}

#youtube-video {
  display: none; /* Hidden by default */
  margin-top: 20px;
  position: inherit;
  right: 50px;

}

#youtube-videos {
  display: none; /* Hidden by default */
  margin-bottom: 270px;

  position: inherit;
  
  left: 45px;

}

@media (max-width: 500px) {
  #youtube-videos {
    left: -160px;
    margin-bottom: 300px;
    
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid rgb(53, 166, 204);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: rgb(53, 166, 204);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: hidden;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles 
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
 
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 50vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
 
  color:rgb(53, 166, 204) ;
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: transparent !important;
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 57px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
 
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background-color: #3787b6;
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# social icons
--------------------------------------------------------------*/
.social-icons {
  position: relative;
  transition: all 1.5s ease-in;
  display: flex;
  align-items: center;
  
}




/* .social-icons {
  position: relative;
 
  transition: all 1.5s ease-in;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.main-icon {
 
  cursor: pointer;
  transition: all 1s ease-in;
}

.additional-icons {
  position: absolute;
  
 
  opacity: 0;
  transition: opacity 1s ease-in;
 
}

  /* Show additional icons when hovering over main icon */
  /* .social-icons:hover .additional-icons,
  .additional-icons:hover {
      opacity: 1;
      transition: opacity 2s ease-in;
     
  }

  /* Hide main icon when hovering over it */
  /* .social-icons:hover .main-icon {
      opacity: 0; /* Fade out main icon */
      /* transition: opacity 2s ease-in;
      
  } */ */

  /* .additional-icons a {
      display: inline-block;
     
      opacity: 1; /* Keep opacity for icons */
      /* transition: opacity 2s ease-in;
  } */ */

  /* .additional-icons a:hover {
      opacity: 0.8;
      transition:  2s ease-in;
  } */ */ */
 
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
 
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 52px;
 
  color: var(--nav-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
}




/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
/* Initially hide all images */
.logo-container .slider .slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}

/* Define fadeInOut animation */
@keyframes fadeInOut {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  25% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  75% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Apply animation to the first 7 images */
.slider .slide:nth-child(-n+7) {
  animation: fadeInOut 11s ease-in-out ; /* 14 seconds duration */
  animation-delay: 1s; /* First 7 images appear immediately */
  animation-fill-mode: forwards;
}

/* Apply animation to the next 7 images (8th to 14th) */
.slider .slide:nth-child(n+8):nth-child(-n+14) {
  animation: fadeInOut 10s ease-in-out ; /* 14 seconds duration */
  animation-delay: 8s; /* Second set appears after the first set */
  animation-fill-mode: forwards;
}

/* Apply animation to the next 6 images (15th to 20th) */
.slider .slide:nth-child(n+15):nth-child(-n+20) {
  animation: fadeInOut 14s ease-in-out ; /* 14 seconds duration */
  animation-delay: 12s; /* Third set appears after the second set */
  animation-fill-mode: forwards;
}

/* Styling for the slide track to display images */
.slide-track {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.slide img {
  max-width: 100%;
  height: auto;
  width: 200px;
}



/* home banner slider */

.slider {
     overflow: hidden;
     position: relative;
     height: 100vh;
    
   
}
.slider .list .item{
  position: absolute; 
   inset: 0 0 0 0;
  overflow: hidden; 
  opacity: 0;
  transition: .5s;
}
.slider .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .list .item .content{
  position: absolute; 
  left: 16%;
  top: 25%;
  
  z-index: 1;
  color: #fff;
  transition: transform 1s ease, opacity 1s ease;
  animation: slideContentFromTop 1.5s ease forwards;
  animation-delay: 2s; /* 2 second delay for the content */
}

.slider .list .item3 .content span{
  color: white;
}
@keyframes slideContentFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slider .list .item .content h2{
  font-size: 55px;
  margin: 0;
  color: black;
  
}
.slider .list .item .content span{
  color: #0579ba;
  font-size: 45px;
  
}
.slider .list .item.active{
  opacity: 1;
  z-index: 10;
  animation: slideFromTop 1.5s ease forwards; /* Animate slide from top */
  }

  
  @keyframes slideFromTop {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }


@keyframes showContent {
  to{
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
.slider .list .item.active span,
.slider .list .item.active h2
{
  transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
  animation-delay: 1s;

}
.slider .list .item.active span{
  animation-duration: 1.3s;
}


.thumbnail {
  position: absolute;
  bottom: 20px; /* Position thumbnails at the bottom */
  left: 60%;
  transform: translateX(-50%); /* Center the thumbnails horizontally */
  display: flex;
  gap: 15px; /* Space between thumbnails */
  z-index: 11;
  animation: thumbnailSlideIn 1.5s ease forwards;
  animation-delay: 3s; /* Delay the thumbnail animation by 2 seconds */
  box-sizing: border-box;
 
}
.thumbnail .item{
  width: 285px; /* Set a width for thumbnails */
  height: 340px;
  transition: .5s;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
 
}

.thumbnail img {
 
  object-fit: cover; /* Ensure image covers the thumbnail container */
  border-radius: 25px;
 height: 100%;
 width: 100%;
  cursor: pointer; /* Add pointer to indicate it's clickable */
  border-radius: 15px;
  
}
.thumbnail .content1 {

  color: white;
  transform: rotate(-90deg); /* Rotate text 90 degrees */
  font-size: 28px;
  white-space: nowrap;
  display: flex;
  position: absolute;
    top: -45%;
    left: 15%;
}
.thumbnail .content2 {

  color: white;
  transform: rotate(-90deg); /* Rotate text 90 degrees */
  font-size: 28px;
  white-space: nowrap;
  display: flex;
  position: absolute;
    top: -45%;
    left: 47%;
}
.thumbnail .content3 {

  color: white;
  transform: rotate(-90deg); /* Rotate text 90 degrees */
  font-size: 28px;
  white-space: nowrap;
  display: flex;
  position: absolute;
    top: -45%;
    left: 82%;
}
  
  /* Thumbnail animation from left to right */
@keyframes thumbnailSlideIn {
  0% {
    left: -100%; /* Start off-screen */
    opacity: 0;
  }
  100% {
    left: 60%; /* Final position on-screen */
    opacity: 1;
  }
}

/* Optional hover effect for thumbnails */
.thumbnail img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
 


@keyframes slideUp {
  from {
      transform: translateY(100%);
  }
  to {
      transform: translateY(0);
  }
}


.slider .list .item2 .content{
  position: absolute; 
  right: 0;
 bottom: 40%;
  z-index: 1;
  color: #fff;
  transition: transform 1s ease, opacity 1s ease;
  animation: slideContentFrombottom 1.5s ease forwards;
  animation-delay: 2s; /* 2 second delay for the content */
}

.slider .list .item3 .content{
  position: absolute; 
  right: 0;
 bottom: 40%;
  z-index: 1;
  color: #fff;
  transition: transform 1s ease, opacity 1s ease;
  animation: slideContentFrombottom 1.5s ease forwards;
  animation-delay: 2s; /* 2 second delay for the content */
}

@media  (min-width:1000px){
  .slider .list .item3 .content h2{
    color: white;
  }
}
@media screen  and (max-width:1200px)and (min-width:800px){
  .thumbnail{
    left: 60%;
  transform: translateX(-60%);
  }
}

@media  (max-width:700px){
 .slider .list .item .content h2{
  font-size: 38px;
  line-height: 60px;
 }

 .slider .list .item .content span{
  font-size: 38px;
 }

}

@media  (max-width:500px){
  .slider .list .item .content h2{
   font-size: 33px;
  }
  .slider .list .item .content span{
    font-size: 33px;
   }
   .thumbnail{
    display: none;
   }
   .slider .list .item .content{
    margin-top: 50px;
   }
   .slider .list .item3 .content h2{
    color: white;
   }
 
 }



.thumbnail .item {
  transition: opacity 1s ease, left 1s ease;
  opacity: 0; /* Start hidden */
  position: relative; /* Ensure correct positioning */
  left: -100%; /* Start off-screen */
  flex-shrink: 0;
}

.thumbnail .item.active {
  opacity: 1; /* Show active thumbnails */
  left: 0; /* Move to original position */
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* Container styles */
.banner {
  position: relative;
  width: 100%;        /* Ensures it takes full width of its parent container */
  height: 500px;      /* Set a fixed height for the banner (adjust as needed) */
  overflow: hidden;   /* Ensures no image part is overflowing */
  display: block;     /* Makes the container behave like a block-level element */
}

/* Image styles */
.banner img {
  width: 100%;        /* Image will scale to fit the container's width */
  height: 100%;       /* Make the image fill the container’s height */
  object-fit: cover;  /* Ensures the image covers the container without distortion */
  display: block;     /* Removes unwanted space below the image */
  object-position: top center; /* Aligns the top of the image to the top of the container */
}



/* For tablets and smaller screens */
@media (max-width: 768px) {
  .banner {
    height: 500px; 
    width: 100%; /* Adjust height for tablets */
    max-width: 100%;
  }
}

/* For mobile screens */
@media (max-width: 480px) {
  .banner {
    height: 600px; 
    max-width: 100%;
  
  }
}


 .about_img {
  width: 650px !important;
}

#about_1{
  margin-bottom: 80px;
}

@media (max-width:2000px) and (min-width:1200px) 

  {
    #about_1{
      margin-top: 100px;
    }
    .about p{
      max-width: 550px;
    }
}

@media (max-width:1200px) and (min-width:801px) 

  {
    #about_1{
      margin-top: 140px;
    }
    .about p{
      max-width: 550px;
    }
}

@media (max-width:800px) and (min-width:676px) 

  {
    #about_1{
      margin-top: 60px;
    }

   
}

@media (max-width:676px) and (min-width:600px) 

  {
    #about_1{
      margin-top: 60px;
    }
    #about_1 h3{
      font-size: 30px;
    }
    .about .content h3{
      font-size: 30px;
    }
}

@media (max-width:600px) and (min-width:500px) 

  {
    #about_1{
      margin-top:120px;
    }
    #about_1 h3{
      font-size: 30px;
    }
    .about .content h3{
      font-size: 30px;
    }
}
@media (max-width:500px){
  #about_1 h3{
    font-size: 28px;
    margin-top: 20px;
  }
  .about .content h3{
    font-size: 28px;
  }
  #about_1{
    margin-top:150px;
  }
}



.about h3{
  text-align: left;
  font-size: 35px;
}
.about h3 span{
  color: #0579ba;
}
.about p{
 
  margin-top: 30px;
  text-align: justify;
  
}
.about_text .col{
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.about_text h2{
  text-align:center ;
  font-size: 48px;
 
}
.about_text h2 span{
  font-size:48px ;
  color: #0579ba;
}

.about_text{
background-color:#d0d7db ;
padding-top: 50px;
padding-bottom: 50px;

}
.about_text span{
  font-weight: 900;
}

.column p {
  flex: 1; /* Makes columns take up equal space */
  padding: 50px; /* Optional: Add padding for spacing */
 
  
  text-align: justify;
  
}
.col-auto h2{
  text-align: center;
}


.divider {
  width: 1px; /* Width of the vertical line */
  background-color: #000; /* Color of the vertical line */
  height: 200px; /* Full height of the container */
}
.about h3{
  text-transform: uppercase;
 
}

.column {
  opacity: 0; /* Start with invisible columns */
  animation-duration: 2s;
  animation-fill-mode: forwards;
  
}

/* Animation for column1 (from left to right) */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%); /* Start outside to the left */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* End at the normal position */
    opacity: 1;
  }
}

/* Animation for column2 (from right to left) */
@keyframes slideInRight {
  from {
    transform: translateX(100%); /* Start outside to the right */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* End at the normal position */
    opacity: 1;
  }
}

/* Apply the animation to the specific columns */
.column1 {
  animation-name: slideInLeft;
}

.column2 {
  animation-name: slideInRight;
}
@media(max-width:700px){
  .about_text .col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .divider {
    width: 200px; /* Width of the vertical line */
    background-color: #000; /* Color of the vertical line */
    height: 1px; /* Full height of the container */
  }
  .about_text h2{
    font-size: 35px;
  }
  .about_text h2 span{
    font-size: 40px;
  }
}

@media(max-width:400px){
  .about_text h2{
    font-size: 30px;
  }
  .about_text h2 span{
    font-size: 30px;
  }
 
}
@media(min-width:1200px){
  
    .divider {
        width: 1px;
        background-color: #000;
        height: 200px;
    }
}

@media (max-width: 1200px) {
 
.column p{
 
  padding: 20px;
}
}

#about{
  background-color: lightgray;
}

/*--------------------------------------------------------------
# video Section
--------------------------------------------------------------*/


.video_play{
  height: 65vh;
  width: 100%;
}
.video_play video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-container {
  position: relative;
  height: 65vh;
  width: 100%;
  background-image: url('../img/home_bann.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  margin-bottom: 120px;
}
#videoContainer {
  display: none; /* Hide the video by default */
  margin-top: 20px;
  text-align: center; /* Center the video */
}
#video {
  width: 560px; /* Set width of iframe */
  height: 315px; /* Set height of iframe */
}
.video-container h2 {
  position: absolute;
  top: 25%; /* Moves the text 50% down from the top */
  left: 50%; /* Moves the text 50% from the left */
  transform: translate(-50%, -50%); /* Centers the text */
  z-index: 2; /* Ensures the text stays on top */
  text-transform: uppercase;
   
}
.video-container .content {
  position: relative;
  bottom: -50%;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



.video_img {
  position: relative; /* For absolute positioning of play buttons */
}

.img_box {
  position: relative;
}

.video-thumbnail {
  position: relative; /* For absolute positioning of play buttons */
}

.play-button {
  position: absolute; /* Position play button absolutely */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for the size of the button */
  cursor: pointer; /* Change cursor to pointer */
  z-index: 10; /* Ensure it appears above the image */
}

.play-button img {
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
}


.video-container .video-embed {
  display: none;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.video-container .show-video {
  display: block !important;
}
.bottom-blocks {
  background-color: rgba(255, 255, 255, 0.8); /* Light background for div blocks */
  padding: 10px;
  border-radius: 10px;
}
.white-box {
  background-color: white; /* White background for the box */
  padding: 45px; /* Space around the image inside the white box */
  max-width: 750px;
  

}

.white-box img {
  display: block;
  width: 100%; /* Make the image responsive */

}



/* Hide video embeds by default */
.video-embed {
  display: none;
  margin-top: 20px;
}



/* Responsive Styling for Widths 1200px, 1000px, 700px, 500px */
@media (max-width: 1200px) {
  .video-container h2 {
    font-size: 32px;
  }
  .video-container .content {
    position: relative;
    bottom: -50%;
    width: 100%;
   
  }

}

@media (max-width: 1000px) and (min-width:750px) {
  .video-container h2 {
    font-size: 30px;
    top: 28%;
  }
  .video-container .content {
    position: relative;
    bottom: -60%;
    width: 100%;
   
  }
  .video-container {
    height: 50vh;
  }
  .white-box {
    
    padding: 35px; 
    max-width: 550px;
    margin: auto;
    
  
  }
}
@media (max-width: 750px) and (min-width:500px){
  .video-container {
    height: 75vh;
    margin-bottom: 60px;
  }
}


@media (max-width: 750px) and (min-width:300px) {
  .video-container h2 {
    font-size: 28px;
   top: 15%;
  }
  .video-container .content {
    position: relative;
    bottom: -30%;
    width: 100%;
   
  }
  .video-container {
    height: 100vh;
    margin-bottom: 50px;
  }
  .white-box {
    
    padding: 30px; 
   opacity: 0.8;
   max-width: 420px;
   margin: auto;
    
  
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.project__area-two img {
  width: 100%;
}
.project__area-two {
  margin-top: 150px;
  
}
.project__area-two .row{
  margin-bottom: 50px;
}

.gallery .row{
  margin-bottom: 50px;
}
.product_thumb-two{
  height: 400px;
  width: 470px;
  
}
.product_thumb-two img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project__area-two img{
  max-width: 100%;
  transition: 0.3s ease-out;
}



.project__area-two .btn {
 color: white;
 background-color: #3787b6;
}
.project__area-two .btn:hover{

  background-color: black;
}
.gallery .btn {
  color: white;
  background-color: #3787b6;
 }
 .gallery .btn:hover{
 
   background-color: black;
 }

.gallery {
  padding: 60px 0;
  /* background-color: #3787b6;  */
  background-image: url('https://www.transparenttextures.com/patterns/30-degree-shade.png'); /* A subtle grid pattern */
  background-repeat: repeat; /* Ensures the pattern repeats */
}


.gallery h3 {
 
 margin-top: 80px;
 margin-bottom: 60px;
  color: black;
  font-size: 45px;
}
.gallery-item-wrapper {
  display: flex;
  justify-content: center;
}

.gallery-item {
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: soft shadow effect */
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: translateY(-5px); /* Optional: subtle hover effect */
}

.gallery-item img {
  width: 400px;
  height: 350px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item h4 {
  font-size: 28px;
  color: #333;
  margin-top: 10px;
  display: flex;
  justify-content: center;
 
}

.gallery-item-link {
  text-decoration: none;
  color: inherit;
}

.bg-white {
  background-color: #fff;
}

.p-3 {
  padding: 15px;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
 
  .gallery h3 {
     font-size: 35px;
   }
}

@media (max-width: 1100px) and (min-width: 700px) {
  .col-md-3 {
      width: 50%;  /* Adjust the width to your preference */
  }
}


/*--------------------------------------------------------------
# Product-details Section
--------------------------------------------------------------*/
#product-info{
  background-color: #0579ba;
 
}
.product-detail {
  margin-top: 60px;
  font-size: 19px;

}

#product-description{
  padding-bottom: 0px;
}
#product-detail {
 background-color: lightgrey;
 padding: 80px 0px;

}

#product-detail h3{
  margin-bottom: 50px;
  font-size: 50px;
}
#product-title {
  color: white;
  text-align: left;
  margin-left: 18px;
  padding-left: 40px;
  margin-top: 10px;
  font-size: 39px;
}
.product_detail{
  background-color: #0579ba;
  height: 500px;
  margin-left: 0px;
}
.product_detail h4{
  padding-top: 30px;
  padding-left: 40px;
  color: white;
  font-size: 33px;
}
.product_detail p{
  padding-top: 30px;
  padding-left: 40px;
}
#product-image{
  height: 450px;
  width: 500px ;
  object-fit: cover;
}
.product-detail .btn{
 background-color: white;
 color: #0579ba;
 font-size: 18px;
 margin-right: 47px;
 margin-bottom: 10px;
 margin-top: 15px;
}

  
@media (min-width:800px) and (max-width:1000px){
  .product_detail{
    
    height: auto;
  }
  

}

@media (min-width:1000px) and (max-width:1450px){
  #product-title {
   
    text-align: left;
    margin-left: 0px;
    padding-left: 40px;
    margin-top: 00px;
    font-size: 30px;
  }
  .column p{
    padding: 30px;
  }
  #product-info{
   height: auto;
   
  }
  

}
  
@media  (max-width:1000px){
  #product-info{
    margin-top: 30px;
    height: auto;
  }
}
@media  (max-width:800px){
  #product-title{
    margin-left: 0px;
  }
}

@media  (max-width:500px){
  .product-detail .btn{
    margin-right: 8px;
    margin-bottom: 20px;
  }
 
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 150px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 45px;

  line-height: 58px;
}
.call-to-action h3 span{
  font-size: 45px;

  color: #0579ba;
}

@media(max-width:500px){
  .call-to-action h3{
    font-size: 30px;
    line-height: 50px;
  }
  .call-to-action h3 span{
    font-size: 30px;
  }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

/* Container Styling */
.logo-container {
  padding: 60px 0;
  height: 600px;
width: 100%;
background-image: url('../img/about_client_bg.jpg');
background-size: cover;
position: relative;

}
.logo-container h2{
  font-size: 53px;
  color: #0579ba;
  padding-top: 60px;
 
}

/* Logo Slider */
.logo-slider {
  position: absolute;
  top: 250px;
}
.logo-container .logo-row {
  display: flex;
  gap: 20px; /* Space between logos */
  justify-content: center;
  animation: slide-animation 30s linear infinite;
}

.logo-container .logo {
  flex: 0 0 auto;
  width: 150px; /* Adjust logo width */
  height: 100px; /* Adjust logo height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Slide Animation */
@keyframes slide-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .logo-container .logo-row {
    gap: 10px; /* Smaller gap for tablets */
  }
  .logo-container .logo {
    width: 120px;
    height: 80px;
  }
  .logo-slider {
    top: 280px;
  }
}

@media (max-width: 480px) {
  .logo-container .logo-row {
    gap: 5px; /* Smaller gap for mobile */
  }
  .logo-container .logo {
    width: 100px;
    height: 60px;
  }
  .logo-container h2{
    font-size: 35px;
  }
  .logo-slider {
    top: 300px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact{
  background-color: #0579ba;
  position: relative;
  padding: 150px 0;
  margin-top: 80px;
 
}

.contact h4{
  color: white;
  padding: 30px 80px 0 80px;
  margin-bottom: 20px;
  margin-top: 20px;

}
.contact .info-item {
  padding: 30px 60px 0 60px;
}
.contact .info-item p{
  font-size: 20px;
}
.contact .contact_form{
  background-color: #e9e9e9;
  position: absolute;
 
  left: 43%;
  height: 450px;
}
.contact .contact_form .form-group .form-control{
  border-radius: 50px;
}
.contact .contact_form .form-group label{
  padding-left: 90px;
}
#inputMessage{
  height: 130px ;
  border-radius: 30px;
  padding-left: 50px;
  margin-left: 70px;
  width: 91%;
}
input .inputCall{
  width: 150px;
}

.contact .contact_form h4{
  color: black;
 
}
.contact .info-item i {
  color: white;
  font-size: 26px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .contact_content{
  background-color: #0579ba;
  height: 300px;
  border: 1px solid lightgrey;
  border-radius: 55px;
  
  position: relative;
}
.contact p{
  color: white;
}
.contact .info-item h3 {
  padding: 0;
  font-size: 18px;

  margin-bottom: 5px;
}

@media (max-width:1200px){
  .contact .contact_form {
  
    position: unset;
    
  }
  .contact .info-item {
    padding: 30px 30px 0 0px;
}
  .contact .contact_content{

    height: auto;
  }
  #inputMessage {
    height: 110px;
    margin-left: 90px;
    width: 86%;
}
.contact .contact_form .form-group label{
  padding-left: 50px;
}
}
@media (max-width:800px){
  .contact .contact_form {
  position: unset;
    height: auto;
    margin: 0 20px;
  }
  .contact .contact_form .form-group label {
    padding-left: 20px;
  }

 .contact .contact_content{
  margin-bottom: 30px;
  
 }
}

@media (max-width:600px){

.contact .contact_form {
  margin: 0px;
}
.contact h4{
  font-size: 24px;
}
.contact .contact_content{
  margin-left: 0;
  height: auto;
}
#inputMessage {
  height: 110px;
  margin-left: 70px;
  width: 86%;
}
.contact h4{
  color: white;
  padding: 30px 80px 0 80px;
  margin-bottom: 80px;
 
}

}


@media (max-width:400px)and (min-width:250px){
  #inputMessage{
    margin-left: 0;
    width: 100%;
  }
}



.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.contact .info-item:hover i {
 
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
 
  width: 100%;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #0579ba;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
 background-color: #0579ba;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.contact .php-email-form button[type=submit]:hover {
 background-color: white;
  color:#0579ba ;
}


/* fb, wtsp button */
.float2{
  position:fixed;
  width:50px;
  height:50px;
  bottom: 10px;
  right: 15px;
  background-color:#1c5b9d;
  color:#FFF;
  border-radius:50px;
  text-align:center;
font-size:20px;
  /* box-shadow: 2px 2px 3px #999; */
z-index:100;
}



.my-float{
  margin-top:16px;
}
.fa-whatsapp{
  position: fixed;
  bottom: 20px;
  right: 93px;
  font-size: 30px;
  color: white;
}
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 10px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
  right: 80px;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

/* pdf */

