  @import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Mukta&family=Noto+Sans+KR:wght@200&family=Noto+Sans+NKo+Unjoined:wght@400;500;700&family=Open+Sans:wght@300&family=Pixelify+Sans:wght@500&family=Poppins:ital,wght@0,300;1,300&family=Roboto+Condensed&family=Roboto:ital,wght@1,100&family=Young+Serif&display=swap');



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
  
}

body{
font-family: 'Roboto Condensed', sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    /* background-color: #eee; */
    background-color: #fff;
    z-index: 1000;
}

.nav{
  /* background-color: #000; */
        background-color: #fff;
        width: 100%;
        z-index: 2;
         margin: 0 auto;
         /* height: 90px; */
    }
    
    .nav-wrapper {
      background-color: #fff;
        /* background-color: #000; */
        /* background-color: #fff; */
        /* background-color: #fff; */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .brand {
        display: flex;
        align-items: center;
    }
    
    .brand svg {
        height: 30px;
        margin-right: 10px;
    }
    
    .brand svg path {
        fill: var(--pure);
    }
    
    .nav-wrapper ul.nav-list {
        list-style-type: none;
        display: flex;
        align-items: center;
    }
    .nav-wrapper ul.nav-list li {
        margin-left: 30px;
        padding: 20px 10px;
        position: relative;
    }
    
    .nav-wrapper ul.nav-list li a {
        font-size: 18px;
        /* color: #02174e; */
        color: rgb(6, 185, 216);
        text-decoration: none;
        letter-spacing: 1px;
        transition: all .5s ease-in-out;
    }
    
    .nav-wrapper ul.nav-list li a:hover, .nav-wrapper ul.nav-list li a {
        /* color: #15c6ea; */
        /* color: #02174e; */
        /* color: #00bcd4; */
        color: #25b4cf;
        /* color: #fff; */
      
        
    }

    


    main section.header {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 160px;
    }
    
    main section.header h1 {
        font-size: 36px;
        font-weight: 100;
        text-transform: capitalize;
        margin-bottom: 20px;
    }
    
    main section.header h4 {
        font-size: 18px;
        font-weight: 400;
        color: var(--dark-gray);
        margin-bottom: 20px;
    }
    nav ul.dropdown-list {
        list-style-type: none;
        display: block;
        background: var(--smoke);
        padding: 6px 16px;
        position: absolute;
        width: max-content;
        z-index: 9999;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-wrapper ul.dropdown-list li {
        margin-left: 0;
        padding: 5px 0;
    }
    
    .nav-wrapper ul.dropdown-list  li a {
        color: var(--dark);
    } 
    
    .nav-wrapper ul.nav-list li:hover .dropdown-list {
        opacity: 1;
        pointer-events: auto;
        animation: moveUp .5s ease-in-out forwards;
    }
    
    @keyframes moveUp {
        0% {
            opacity: 0;
            transform: translateX(-50%) translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateX(-50%) translateY(20px); 
        }
    }
    
    .hamburger {
        display: none;
    }
    
    .mobile .hamburger {
        display: flex;
        flex-direction: column;
        padding-right: 20px;
        padding-top: 10px;
        cursor: pointer;
    }
    
    .mobile .hamburger span {
        color:  rgb(0, 217, 255);
        background: black;
        width: 28px;
        height: 2px;
        margin-bottom: 8px;
    }
    
    .mobile ul.nav-list {
        /* background: -webkit-linear-gradient(45deg, #434343, #000000);
        background: linear-gradient(45deg, #434343, #000000); */
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        opacity: 0;
        pointer-events: none;
        transition: all .3s ease-in-out;
    }
    
    .hamburger, .brand {
        z-index: 9999;
    }
    
    .mobile ul.nav-list.open {
        opacity: 1;
        pointer-events: auto;  
    }
    
    .mobile .hamburger span {
        transform-origin: left;
        transition: all .3s ease-in-out;
    }
    
    .mobile ul.nav-list li a {
        font-size: 20px;
    }

/* main section start */

    .main{

        width: 100%;
        height: 600px;
      }
      
      .banner1,.banner2,.banner3{
        height: 600px;
        width:100%;
      position: absolute;
      left:0;
      top:90px; 
      overflow: hidden;
      }
      
      .main img{
      width: 100%;
      height: 100%;
      position: absolute;
      left: 50%;
      top:50%; 
      transform: translate(-50%,-50%);
      animation: zoom-out 3s linear infinite;
      }
      
      @keyframes zoom-out{
      100%{
          width: 100%;
      }
      } 
      
      .text-box{
      position: absolute;
      width: 500px;
      top:250px;
      left: 70px;
      padding: 20px;
      color: #fff;
      animation: textup 12s linear infinite;
      transform: translateY(200px);
      
      }
      
      .text-box h1{
      margin-bottom: 40px;
      }
      
      .text-box p{
      font-size: 18px;
      line-height: 18px;
      margin-top: 80px;
      }
      .text-box span{
      background-color: red;
      height: 1px;
      width: 100px;
      position: absolute;
      margin-left: 20px;
      left: 0;
      }
      
      .banner1{
      animation: slide1 12s linear infinite;
      }
      
      .banner2{
      animation: slide2 12s linear infinite;
      }
      .banner3{
      animation: slide3 12s linear infinite;
      }
      
      @keyframes slide1{
      0%{
          visibility: visible;
      }
      25%{
          visibility: visible;
      }
      50%{
          visibility: hidden;
      }
      75%{
          visibility: hidden;
      
      }
      }
      
      @keyframes slide2{
      0%{
          visibility: hidden;
      }
      25%{
          visibility: hidden;
      }
      50%{
          visibility: visible;
      }
      75%{
          visibility: hidden;
      
      }
      }
      
      @keyframes slide3{
      0%{
          visibility: hidden;
      }
      25%{
          visibility: hidden;
      }
      50%{
          visibility: hidden;
      }
      75%{
          visibility: visible;
      
      }
      }
      
      @keyframes textup{
      10%{
          transform: translateY(0px);
      }
      100%{
          transform: translateY(0px);
      }
      }
      
      .text-box1{
      animation-delay: 0s;
      }
      
      .text-box2{
      animation-delay: 3s;
      }
      .text-box3{
      animation-delay: 6s;
      }
      
      
      @media screen and (max-width: 650px) {
        .text-box{
          position: absolute;
          width:340px;
          top:300px;
          left: 10px;
          padding: 20px;
          color: #fff;
          animation: textup 12s linear infinite;
          transform: translateY(200px);
          
          }
      }
        
      @media  screen and(max-width:480px){
        .text-box{
          width: 200px;
          position: absolute;
          top:250px;
          left: 0px;
          margin-right: 20px;
          transform: translateY(200px);
          
          }
      }
      
      
      @media  screen and(max-width:320px){
        .text-box{
          
          position: absolute;
          top:250px;
          left: 0px;
          margin-right: 40px;
          transform: translateY(200px);
          
          }
      }




      /* pool-layouts */


.pool-layouts{
  clear: both;
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    padding: 20px 0px;
    text-align: center;
    color: #209db6;
  }
  
  
  
  /* section */
  
  
  .features-section {
    width: 100%;
    font-family: Open-sans, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  
  }
  
  .section {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem; 
  /*   background-color: red; */
  }
  
  .card {
    display: flex;
    position: relative;
    width: 450px;
    height: 300px;
    transition: transform 1s;
  }
  
  .card:hover{
    transform: scale(1.05,1.05);
  }
  
  
  .card-cover {
    display: flex;
    position: absolute;
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    color: white;
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,0.75) 100%);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
  }
  .card h2 {
    font-size: 20px; 
  }
  .card p {
    font-size: 13px;
    padding-bottom: 20px;
  }
  .card:hover .card-cover {
    opacity: 1;
  }
  
  .card-image {
    width: 100%;
    height: 100%;
    background-color: #1A1A1A;
    object-fit: cover;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card-body {
    width: 100%;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    color: white;
    opacity: 0;
    transition: opacity 1s;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  .card:hover .card-body {
    opacity: 1
  }
  @media only screen and (max-width:750px) {
    .features-section{
      height: 450px;
    }
    .card {
      display: flex;
      position: relative;
      width: 250px;
      height: 150px;
      transition: transform 1s;
    }
  }
  @media only screen and (max-width:650px) {
    .features-section{
      height: 450px;
    }
    .card {
      display: flex;
      position: relative;
      width: 200px;
      height: 150px;
      transition: transform 1s;
    }
  }
  @media only screen and (max-width:480px) {
    .pool-layouts{
      width: 100%;
      height: auto;
      margin-top: 100px;
      margin-bottom: 0px;
    }
    .features-section{
      height: auto;
    }
    .card {
      display: flex;
      position: relative;
      width: 250px;
      height: 300px;
      transition: transform 1s;
    }
    .section {
      display: grid;
      grid-template-columns: repeat(1, auto);
      grid-template-rows: repeat(2, auto);
      grid-column-gap: 1rem;
      grid-row-gap: 1rem; 
    /*   background-color: red; */
    }
  }
  
  
  
  /* services */
  .section-heading{
    margin-top: 10px;
    padding: 20px 0px;
    width: 100%;
    text-align: center;
    color: #209db6;
    
  }
  section {
    height: auto;
    width: 100%;
    display: grid;
    place-items: center;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .column {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
  }
  .services-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #209db6 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
  }
  .services-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
  }
  .services-card p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .icon-wrapper {
    background-image: linear-gradient(to right, rgb(166, 166, 250), rgb(139, 228, 248));
    /* background: linear-gradient(to bottom, #209db6, #8fdefa) no-repeat, white; */
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }
  
  
  .services-card:hover {
    background-position: 0 100%;
  
  }
  .services-card:hover .icon-wrapper {
    background-color: #ffffff;
    color: linear-gradient(to right, rgb(166, 166, 250), rgb(139, 228, 248));
    /* background: linear-gradient(to bottom, #209db6, #8fdefa) no-repeat, white; */
  
  }
  
  
  
  .services-card:hover h3 {
    color: #ffffff;
  }
  .services-card:hover p {
    color: #f0f0f0;
  }
  @media screen and (min-width: 768px) {
    section {
      padding: 0 2em;
    }
    .column {
      flex: 0 50%;
      max-width: 50%;
    }
  }
  @media screen and (min-width: 992px) {
    section {
      padding: 1em 3em;
    }
    .column {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }
  
  .intro {
    text-align: center;
  }
  
  .intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0px;
  }
  
  .intro-img {
    flex: 1; /* Take 50% of the width on larger screens */
  }
  
  .intro-img img {
    max-width: 100%;
    height: auto;
  }
  
  .intro-text {
    flex: 1; /* Take 50% of the width on larger screens */
    text-align: left;
    padding: 0px 20px 0px 0px;
  }
  
  .intro h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .intro h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--primary-color); /* Set your desired text color */
  }
  
  .intro p {
    font-size: 14px;
    line-height: 1.5;
    color: #555; /* Set your desired text color */
    padding-bottom: 40px;

  }
  .about-button{
    padding: 10px 20px;
    border: 1px solid black;
    text-decoration: none;
    background-color: #209db6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-left: 20px;
  }
  .about-button:hover{
    /* color:#2c7bfe; */
    color: #209db6;
    background-color: #fff;
  }
  /* Responsive Design for Intro Section */
  @media screen and (max-width: 768px) {
    .intro {
      padding-top: 0px;
    }
    .intro-content {
      flex-direction: column; /* Stack elements on top of each other for smaller screens */
    }
  
    .intro-img,
    .intro-text {
      flex: 1; /* Take 100% width on smaller screens */
    }
  
    .intro-img img {
      margin-bottom: 20px; /* Add spacing between image and text */
      padding: 0px 20px;
    }
  
    .intro h1 {
      font-size: 1.5rem; /* Adjust font size for smaller screens */
      padding: 0px 20px 0px 20px;
    }
  
    .intro h3 {
      font-size: 1.25rem; /* Adjust font size for smaller screens */
      padding: 0px 20px 0px 20px;
    }
  
    .intro p {
      font-size: 1rem; /* Adjust font size for smaller screens */
      padding: 0px 70px 0px 20px;
      margin-bottom: 20px;
    }
  }
  
  
  .hex-container {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  /* Individual hexagonal card */
  .hex-card {
    position: relative;
    width: 200px;
    height: 170px;
    margin: 20px;
  }
  
  .hex-card-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    /* background-image: linear-gradient(to right, rgb(166, 166, 250), rgb(139, 228, 248)); */
    /* background: linear-gradient(to bottom, #209db6, #fff,   #209db6  ) no-repeat, white; */
    background: linear-gradient(to bottom, #9ddaea, #209db6,#9ddaea) no-repeat, white;
    color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .hex-card-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hex-card:hover .hex-card-inner {
    transform: scale(1.1);
  
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  
  
  .counter-wrapper{
    background: url(Images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1.5rem;
    padding: 8rem 9%;
    margin-top: 1rem;
    position: relative;
    height: auto;
  }
  .counter-wrapper::before{
    position: absolute;
    content: '';
    content: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
  }
  .counter{
   text-align: center;   
   color: #ddd;
   z-index: 2;
   position: relative;
  }
  .counter::before{
    position: absolute;
    content: '';
    bottom: -1rem;
    left: 50%;
    width: 20%;
    height: .2rem;
    background: #209db6;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .counter .count{
    font-size: 5rem;
    margin-bottom: 10px;    
  }
  .counter p{
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  
  
  
  
  
  
  @media (max-width: 991px) {
    html{
        font-size: 55%;
    }
  }
  @media (max-width: 768px) {
   .counter-wrapper{
       grid-template-columns: repeat(2, 1fr);
       grid-row-gap: 8rem;
   }
  }
  @media (max-width: 450px) {
    html{
        font-size: 50%;
    }
    .counter-wrapper{
        grid-template-columns: 1fr;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* Media queries for responsiveness */
  @media (max-width: 950px) {
    .hex-container {
      width: 100%;
      height: 200px;
    }
    .hex-card {
      width: 170px;
      height: 120px;
    }
    .hex-card h2 {
      font-size: 14px;
    }
    .hex-card p {
      font-size: 10px;
    }
  }
  @media (max-width: 768px) {
    .hex-container {
      width: 100%;
      height: 160px;
    }
    .hex-card {
      width: 150px;
      height: 100px;
    }
    .hex-card h2 {
      font-size: 12px;
    }
    .hex-card p {
      font-size: 7px;
    }
  }
  
  @media (max-width: 480px) {
    .hex-container {
      width: 100%;
      height: 820px;
      flex-direction: column;
    }
    .hex-card {
      width: 130px;
      height: 110px;
      margin: 10px;
    }
    .hex-card h2 {
      font-size: 14px;
    }
    .hex-card p {
      font-size: 12px;
      margin-bottom: 0px;
    }
  }
  
  
  
  .wide-cards {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    column-gap: 20px;
  }
  
  .card-1 {
    margin-left: 30px;
    height: 250px;
    flex: 1;
    padding: 20px;
    border: rgb(123, 123, 252) solid 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .card-2 {
    width: 100%;
    height: 200px;
    margin-right: 30px;
    flex: 1;
    padding: 20px;
    border: rgb(123, 123, 252) solid 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card-1 img {
    width: 180px;
    height: auto;
  }
  
  .card-1 h1 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--primary-color);
  }
  
  .card p {
    font-size: 1rem;
    margin-top: 10px;
  }
  
  
  /* Responsive Design for Wide Cards */
  @media screen and (max-width: 768px) {
    .wide-cards {
      width: 100%;
      height: 500px;
      flex-direction: column;
      column-gap: 0px;
      row-gap: 30px;
    }
    .card-1 {
      margin:0px 40px;
      height: 250px;
      flex: 1;
      background-color: #fff;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .card-2 {
      width: auto;
      height: 200px;
      margin-right: 0px;
      flex: 1;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  }
  
  
  footer{
    /* background:#209db6 ; */
    /* background: linear-gradient(to bottom, #209db6, #9ddaea,#209db6) no-repeat, white; */
    color: #000000;
    background-color: #eee;
    width: 100%;
    min-height: 300px;
    box-sizing: border-box;
    background-size: cover;
    display: flex;
  }
  .foot1{
    width: 50%;
    height: auto;
    padding-left: 50px;
    padding-top: 80px;
  }
  .foot1 h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    /* color: #fff; */
    padding-bottom: 20px;
    letter-spacing: 1px;
  }
  input {
    border: none;
    outline: none;
    background: transparent;
    width: 280px;
    font-size: 16px;
    letter-spacing: 1px;
    /* color: #fff; */
  }
  .f1 {
   width: 310px;
   /* border-bottom: 1px solid #fff; */
   border-bottom: 1px solid #000;
   margin-bottom: 30px;
  }
  
  .f1 i {
    color: #000000;
    /* color: #fff; */
  }
  .f1 i:hover {
    cursor: pointer;
    color: rgb(221, 239, 253);
  }
  #p1 {
    font-size: 22px;
    font-weight: 500;
    
    padding-bottom: 30px;
    /* color: #fff; */
    color: #000;
  }
  
  #p1 a{
    text-decoration: none;
    /* color: #fff; */
    color: #000;
    font-size: 17px;
  }
  
  #p1 a:hover{
    cursor: pointer;
    color: rgb(221, 239, 253);
    
  }
  
  .icons{
    display: flex;
    column-gap: 50px;
    font-size: 22px;
    /* color: #fff; */
    color: #000;
    text-decoration: none;
  }
  .icons i {
    cursor: pointer;
    /* color: #fff; */
    color: #000;
    text-decoration: none;
  }
  .icons i:hover {
    color: rgb(221, 239, 253);
  }
  .foot2{
  width: 50%;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  }
  .whatisSF h3{
    font-size: 32px;
    padding-bottom: 15px;
    font-size: 32px;
    color: #000;
    /* color: #fff; */
    font-weight: 500;
  }
  .whatisSF ul {
    padding-bottom: 20px;
  }
  .whatisSF ul li {
    padding-bottom: 5px;
  }
  .foot2 .ul{
    display: flex;
    gap: 15px;
    font-size: 13px;
  }
  .foot2 ul li {
    list-style: none;
    /* color: #fff; */
    color: #000;
  }
  .foot2 ul li:hover {
    color: rgb(221, 239, 253);
    cursor: pointer;
  }
  .foot3{
    width: 100%;
    height: 50px;
    color: #02174e;
    background-color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-para{
    font-size: 14px;
    color: #000;
    /* color: #fff; */
    padding-bottom: 20px;
  }
  
  @media screen and (max-width:900px) {
    footer{
      display: block;
      justify-content: center;
      text-align: center;
    }
  
    .foot1 h3 {
      font-size: 24px;
      text-align: left;
      color: #000;
      /* color: #fff; */
      padding-bottom: 20px;
      letter-spacing: 1px;
    }
  
    .foot2{
      width: 100%;
      justify-self: start;
      padding-right: 30px;
     }
  
     .whatisSF h3{
      font-size: 32px;
      padding-bottom: 15px;
      font-size: 32px;
      color: #000;
      /* color: #fff; */
      font-weight: 500;
    }
  
    .foot2 .ul{
      display: flex;
      gap: 15px;
      font-size: 13px;
    }
  
    .footer-para{
      font-size: 14px;
      color: #000;
      /* color: #fff; */
      padding-bottom: 20px;
      text-align: justify;
      /* text-align: center; */
    }
  }
  
  @media screen and (max-width:480px) {
    footer{
      width: 100%;
      display: block;
      justify-content: center;
      text-align: center;
    }
  
    input {
      border: none;
      outline: none;
      background: transparent;
      width: 250px;
      font-size: 16px;
      letter-spacing: 1px;
      color: #000;
    }
  
    .foot1{
      width: 100%;
    }
  
    .f1 {
      width: 200px;
      border-bottom: 1px solid #fff;
      margin-bottom: 30px;
     }
     
     .f1 i {
      text-decoration: none;
      color: #000;
       /* color: #fff; */
       display: flex;
       justify-content: flex-end;
     }
     .f1 i:hover {
       cursor: pointer;
       color: rgb(221, 239, 253);
     }
  
     .foot2{
      width: 100%;
      justify-self: start;
      padding-right: 30px;
     }
  
    .foot2 .ul{
      /* padding-left: 90px; */
      /* text-align: center; */
      display: block;
      /* gap: 15px; */
      font-size: 13px;
      padding-bottom: 10px;
    }
  .foot2 .ul li{
    padding-bottom: 10px;
  }
    .footer-para{
      font-size: 14px;
      color: #000;
      /* color: #fff; */
      padding-bottom: 20px;
      text-align: justify;
      /* text-align: center; */
    }
  }


  
  
  .head{
    background-image:
    linear-gradient(45deg,
      rgba(0, 0, 0, 0.75),
      rgba(39, 40, 41, 0.65)), url(Images/Service-head.jpg);
    width: 100%;
    height: 400px;
    font-size: 22px;
   
    color:#fff;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-top: 80px;
  }
  .energy{
    width: 100%;
    height: auto;
    display: flex;
  }
  .Energy-Efficient{
    width: 50%;
    height: auto;
    padding: 100px;
  }
  .Energy-Efficient-pool{
    width: 50%;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Energy-Efficient h2{
    font-size: 62px;
    margin-bottom: 40px;
  }
  .Energy-Efficient p{
    font-size: 14px;
    line-height: 1.3rem;
  }
  .Energy-Efficient button{
    padding: 20px 30px;
    border: none;
    background-color: #15c6ea;
    margin-top: 40px;
  }
  .front{
    width: auto;
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 12px;
    margin-bottom: 20px;
  }
  .dash{
    width: 70px;
    height: 2px;
    background-color: #ddd;
  }
  @media screen and (max-width: 920px){
    /* .head{
      background-image:
      linear-gradient(45deg,
        rgba(0, 0, 0, 0.75),
        rgba(39, 40, 41, 0.65)), url(Iamges/Service-head.jpg);
      width: 100%;
      height: 300px;
      font-size: 20px;
    } */

  
    .Energy-Efficient h2{
      font-size: 32px;
    }
    .Energy-Efficient{
      padding: 50px;
    }
    .Energy-Efficient-pool img{
      width: 380px;
      height: 450px;
      box-sizing: border-box;
      padding: 25px;
    }
  }
  @media screen and (max-width: 620px){
    .energy{
      flex-direction: column;
      align-items: center;
    }
    .Energy-Efficient{
      margin-right: 0px;
      width: 100%;
    }
    .Energy-Efficient h2{
      text-align: left;
    }
    .Energy-Efficient p{
      font-size: 14px;
      line-height: 2.5rem;
    }
    .Energy-Efficient-pool{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .front{
      justify-content: center;
    }
    .Energy-Efficient-pool img{
      width: 380px;
      height: 500px;
      box-sizing: border-box;
      padding: 25px;
    }
    
  }

  /* our-products */
    
  .youtube-service{
    width:100%;
    height: auto;
    background-color: #eee;
    padding-bottom: 100px;
    padding-top: 5px;
    font-size: 30px;
    text-align: center;
}

.youtube-service h2{
  padding-bottom: 50px;
  color: #15c6ea;
}

 .box-service{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,270px));
    justify-content: center;
    gap:10px;
    height: auto;
    
}

 .box-service .youtube{
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    background: rgba( 255, 255, 255, 0.25 );
    backdrop-filter: blur( 4px );
    /* text-shadow: 0px 0px 1px; */
   -webkit-backdrop-filter: blur( 4px );
   /* border: 2px solid black; */
   border-radius: 5px;
    
    text-align: center;
    padding:15px 5px;
}
.box-service .youtube iframe{
  width: 255px;
  height: 200px;
  border-radius: 5px;
}

.box-service .youtube h3{
    color:#444;
    font-size: 18px;
    /* padding:10px 0; */
}

 .box-service .youtube p{
    color:#444;
    text-align: justify;
    font-size: 14px;
    /* line-height: 1.8; */
}

.box-service .youtube a{
  text-decoration: underline;
  /* color: #fff; */
  color: #15c6ea;
  /* border: 2px solid white; */
  /* width: 200px; */
  margin-top: 15px;
  padding:  5px  25px;
  border-radius: 5px;
  height: 15px;
  font-size: 22px;
  /* background-color: #15c6ea; */
}

.box-service .youtube a:hover{
  color: red;
}

 .box-service .youtube .btn{
    margin-top: 10px;
    display: inline-block;
    background:#333;
    color:#fff;
    font-size: 17px;
    border-radius: 5px;
    /* padding: 8px 25px; */
}

 .box-service .youtube .btn:hover{
    letter-spacing: 1px;
}

 .box-service .box:hover{
    box-shadow: 0 10px 15px rgba(0,0,0,.3);
    transform: scale(1.03);
}



@media (max-width:768px){
    .box-service{
        padding:40px;
        
    }
}

.landscape{
width: 100%;
height: 600px;
/* background-image: url(Images/backyard.jpg); */
background: linear-gradient(45deg,
rgba(0, 0, 0, 0.75),
rgba(39, 40, 41, 0.4)), url(Images/backyard.jpg);;
background-position: center center;
background-size: cover;

}

.main-contact{
  background-image:
  linear-gradient(45deg,
    rgba(0, 0, 0, 0.75),
    rgba(39, 40, 41, 0.65)), url(Images/Service-head.jpg);
  width: 100%;
  height: 400px;
  font-size: 22px;
  color:#fff;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-top: 80px;
}







/* services section  */

.landscape{
  width: 100%;
  height: 500px;
}

.landscape h3{
  font-size: 70px;
  color: #fff;
  padding-top: 170px;
  padding-left: 100px;
}


@media (max-width:768px){
  .landscape{
    width: 100%;
    height: 500px;
  }
  
  .landscape h3{
    font-size: 60px;
    color: #fff;
    padding-top: 30px;
    padding-left: 30px;
  }
}


/* contact  */

.impt{
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  padding: 0px 40px 100px 40px;
  /* align-items: center; */

}

.impt1{
  width: 45%;
  
}

.impt h4{
  
  font-size: 35px;
  padding-top: 50px;
 
}

.impt1 p{
color: #6b6767;
  line-height: 30px;
  font-size: 20px;
}

.impt2{
  width: 45%;

}

.impt2 img{
  width: 80%;
  height: 550px;
  padding-top: 40px;

}

@media only screen and (max-width: 768px) {
  .impt{
    flex-direction: column;
  }
  .impt1 {
    width: 100%;
  }
  .head1 {
    padding-top: 20px;
  }
  .impt2 {
    width: 100%;
    height: 400px;
  }

  .impt2 img{
    width: 100%;
    height: 550px;
    padding-top: 40px;
  
  }
}


/* Our products */

.product-main{
  background-image:
  linear-gradient(45deg,
    rgba(0, 0, 0, 0.75),
    rgba(39, 40, 41, 0.65)), url(Images/Service-head.jpg);
  width: 100%;
  height: 400px;
  font-size: 22px;
  color:#fff;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-top: 80px;
}







.form-section{
  width: 100%;
  height: auto;
  display: flex;
}
.form-text{
  width: 50%;
  height: auto;
 padding-left: 50px;
  padding-top: 80px;
  row-gap: 10px;
  justify-content: center;
}

.form-text h3{
  font-size: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.form-text i{
  color: #00bcd4;
}

.form-text span{
  font-weight: 800;
  color: #00bcd4;
}

.form-text p{
  font-weight: 500;
  color: #02174e;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}


.form{
  width: 45%;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.login-box {
  width: auto;
  width: 100%;
  padding: 30px 30px;
  border-radius: 10px;
  /* background-image: linear-gradient(to right, var(--primary-color), var(--third-color)); */
  background-color: #15c6ea;
  
  /* background-color: #00bcd4; */
  box-sizing: border-box;
  background-position: center center;
  background-size: cover;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  /* color: black; */
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  /* color: #000000; */
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  /* color: black; */
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  font-size: 12px;
}

.login-box form button{
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  /* color: #fff; */
  color: black;
  border-radius: 5px;
  font-size: 16px;
 border: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.login-box button:hover {
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 5px white,
              0 0 25px white,
              0 0 50px white,
              0 0 100px white;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, white);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, white);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, white);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, white);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

@media screen and (max-width:780px){
  .form-section{
    flex-direction: column;
  }
  .form-text{
    width: auto;
    padding-left: 0px;
    padding-right: 0px;
    padding: 50px;
  }
  .form{
    width: auto;
    padding: 50px;
  }
  .login-box {
    width: auto;
    width: 100%;
    padding: 20px 20px;
  }
}
@media screen and (max-width:780px){
  .form-text{
    padding: 25px;
  }
}


/* products */


.dive{
  width: 100%;
  height:auto;
  padding: 50px;
  text-align: center;
  
}

.dive{
  color: #02174e;
  font-size: 40px;
}



/* products */
div.overall{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  background-color: #fff;
  }
  div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    width: 180px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: 200px;
  }
  
  div.desc {
    padding: 10px;
    text-align: center;
  }  


  /* About */

  .about{
    background-image:
  linear-gradient(45deg,
    rgba(0, 0, 0, 0.75),
    rgba(39, 40, 41, 0.65)), url(Images/Service-head.jpg);
  width: 100%;
  height: 400px;
  font-size: 22px;
  color:#fff;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-top: 80px;
  }

  .about-main{
    width: 100%;
    height: auto;
    
    
    
    padding: 60px;
    font-size :14px;
  }

  .about-main h2{
    color: #15c6ea;
    text-align: center;
  }

  .about-main p{
    padding-top: 20px;
    font-size: 20px;
  }

  


  /* service-about */

  .about-services{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    padding: 0px 40px 0px 40px;
    /* align-items: center; */
  
  }
  
  .about1{
    width: 45%;
    
  }

  .about-head1{
    padding-bottom: 20px;
    padding-top: 20px;
  }
  
  .about1 h4{
    
    font-size: 35px;
    padding-top: 50px;
   
  }
  
  .about1 p{
  color: #6b6767;
    line-height: 30px;
    padding-bottom: 70px;
    font-size: 20px;
  }
  
  .about2{
    width: 45%;
  
  
  }
  
  .about2 img{
    width: 80%;
    height: 550px;
    padding-top: 40px;
    padding-left: 40px;
  
  }
  
  @media only screen and (max-width: 768px) {
    .about-services{
      flex-direction: column;
    }
    .about1 {
      width: 100%;
    }


    .about1  img{
      width: 100%;
    }
   
    .about-head1{
      padding-bottom: 20px;
      padding-top: 20px;
    }
    .about2 {
      width: 100%;
      height: auto;
      margin-bottom: 20px;
    }

    .about2 img {
      width: 100%;
      height:500px ;
      padding: 0;
      
    }
  }







.card-box h3 {
  font-size: 1.5em;
  font-weight: 700;
}

.card-box p {
  font-size: 1em;
  line-height: 1.7;
  font-weight: 300;
}

.description {
  white-space: wrap;
}

.card-box a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  padding: 24px;
  flex-wrap: wrap;
}

.card-box {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  position: relative;
  padding: 24px;
  background: #fff;
}

.box-top {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
  margin-bottom: 36px;
}

.box-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 20%;
}

.title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-title {
  border-left: 3px solid ;
  padding-left: 12px;
}

.user-follow-info {
  color: hsl(0, 0%, 60%);
}

/* RESPONSIVE QUERIES */

@media (min-width: 320px) {
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 460px) {
  .title-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 640px) {
    .card-box {
    flex-basis: calc(50% - 12px);
  }
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 840px) {
  .title-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 1024px) {
    .card-box {
    flex-basis: calc(33.3% - 16px);
  }
  .title-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .user-follow-info {
    margin-top: 6px;
  }
}

@media (min-width: 1100px) {
    .card-box {
    flex-basis: calc(25% - 18px);
  }
}




/* our image gallery */








div.Main-Gallery-Wraper{
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 100px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

div.Main-Gallery-Header{

  /*Put Image In Text*/
  margin-top: 100px;
  width: 100%;
  color: #00bcd4;
  height: 80px;
  font-size: 50px;
  text-align: center;
  letter-spacing: 4px;
}

div.Main-Gallery-Container{
  width: 100%;
  height: auto;
  margin: auto;
}

div.Main-Gallery-Start{
  width: 100%;
  height: auto;
  margin-top: 50px;
  column-count: 4;
}

/* div.Hover-Effect{
  position: relative;
} */

/* a{
  text-decoration: none;
  color: white;
} */

img#main-gallery{
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* div#Img-Desc{
  position: absolute;
  top: 0px;
  left: 0px;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  /* font-family: thinking; */
  /* font-family: blacksword;
  font-size: 25px;
  font-weight: bolder;
  letter-spacing: 1.5px;
  text-align: center;
  text-shadow: 5px 0px 5px black;
  color:chartreuse;

  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition:0.6s;
}  */

/* div#Img-Desc:hover{
  opacity: 1;
} */

/* div#Img-Desc>*{
  transform: translatey(-30px);
  transition: transform 0.25s;
}

div#Img-Desc:hover>*{
  transform: translatey(0px);
} */

/* div.Social-Network{
  display: flex;
  flex-flow: row nowrap;
} */
