
  
  @import url('https://fonts.googleapis.com/css?family=Poppins:300,400');

  body {
    margin: 0;
    -webkit-perspective: 1000;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to top right, #ffffff, #89b9e3);
    overflow-x: hidden;
  }

  html {
    height: 100%;
    width: 100%;
  }

  body {
    min-height: 100vh;
    width: 100%;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: inherit;
  }

  h1 {
    color: #ffffff;
    font-size: 2em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .overlay {
     background: linear-gradient(to top right, #ffffff, #89b9e3);
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .grid {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .grid-line {
    height: 300vh;
    border-right: 1px solid rgba(255,255,255,0.02);
  }

  .google-map iframe {
    border: 0;
    margin-top: 20px;
  }

  .subscribe-form {
    position: relative;
  }

  .subscribe-form .form-control {
    background: #ffffff;
    box-shadow: none;
    border: 0;
    border-radius: 50px;
	width: 340px;
    height: 45px;
    padding: 6px 30px;
  }

  .subscribe-form button[type="submit"] {
    background: transparent;
    border: 0;
    outline: none;
  }

  .subscribe-form .fa {
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 12px;
    color: #d2b48c;
    font-size: 20px;
  }

  /* Contact number display */
  .contact-number {
    margin-top: 30px;
    text-align: center;
  }

  .contact-number p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
  }

  .contact-number a {
    color: #1d6f6c;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
  }

  .contact-number a:hover {
    color: #ffffff;
  }

  /* Features Section */
  .features-section {
    margin-top: 50px;
    animation: slideUp 0.8s ease-in-out;
  }

  .features-section h2 {
    color: #1d6f6c;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(29, 111, 108, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .feature-item:hover {
    background: rgba(29, 111, 108, 0.25);
    border-color: rgba(29, 111, 108, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(29, 111, 108, 0.2);
  }

  .feature-item i {
    font-size: 32px;
    color: #1d6f6c;
    display: block;
    margin-bottom: 12px;
  }

  .feature-item h3 {
    color: #353535;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    text-transform: capitalize;
  }

  .tagline {
    color: #1d6f6c;
    font-size: 16px;
    margin: 25px 0 15px 0;
    font-weight: 300;
    line-height: 1.6;
  }

  .tagline strong {
    color: #1d6f6c;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
  }

  .website-link {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
  }

  .website-link a {
    color: #1d6f6c;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #1d6f6c;
    transition: 0.3s;
  }

  .website-link a:hover {
    color: #d2b48c;
    border-bottom-color: #d2b48c;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media screen and (max-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      max-width: 100%;
      padding: 0 15px;
    }

    .feature-item {
      padding: 12px 8px;
    }

    .feature-item i {
      font-size: 26px;
    }

    .feature-item h3 {
      font-size: 12px;
    }

    .features-section h2 {
      font-size: 22px;
    }
  }

  @media screen and (max-width: 600px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      max-width: 100%;
      padding: 0 10px;
    }

    .feature-item {
      padding: 10px 6px;
    }

    .feature-item i {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .feature-item h3 {
      font-size: 11px;
      line-height: 1.3;
    }

    .features-section h2 {
      font-size: 19px;
      margin-bottom: 12px;
    }

    .tagline {
      font-size: 13px;
      margin: 20px 0 12px 0;
    }

    .website-link {
      font-size: 13px;
    }
  }

  @media screen and (max-width: 480px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      max-width: 100%;
      padding: 0 8px;
    }

    .feature-item {
      padding: 8px 5px;
    }

    .feature-item i {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .feature-item h3 {
      font-size: 10px;
      line-height: 1.2;
    }

    .features-section h2 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .tagline {
      font-size: 12px;
      margin: 15px 0 10px 0;
    }

    .website-link {
      font-size: 12px;
    }
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }
/* #0ea5a4 */
  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }


  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .menu, .menu-bg, .menu-burger {
    position: fixed;
    z-index: 222;
    width: 50px;
    height: 50px;
    line-height: 30px;
    font-size: 25px;
    text-align: center;
    border-radius: 100%;
    right: 25px;
    top: 25px;
  }

  .menu-bg {
    background: #101010;
    pointer-events: none;
    transition: .3s;
    right: 50px;
    top: 50px;
    transform: translate3d(50%, -50%, 0);
    transform-origin: center center;
  }

  .menu-bg.fs {
    transform: translate3d(50%, -50%, 0);
    width: 500vw;
    height: 500vw;
  }

  .menu-burger {
    color: #ffffff;
    padding-top: 11px;
    -webkit-user-select: none;
    cursor: pointer;
    transition: .4s;
    transform-origin: center;
    z-index: 9999;
  }

  .menu-burger.fs {
    transform: rotate(-180deg) translateY(5px);
  }

  .menu-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .4s;
    margin-top: 50px;
    transform: translateY(-200%);
    pointer-events: none;
  }

  .menu-items ul.menu {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    top: 10px;
  }

  .menu-items ul.menu li {
    display: block;
    list-style: none;
    transition: 1s;
    opacity: 0;
    margin: 5px 0;
  }

  .menu-items ul.menu li a {
    color: #ffffff;
    font-size: 18px;
    position: relative;
  }

  .menu-items ul.menu li a:after {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 50px;
    position: absolute;
    bottom: 13px;
    transition: 0.5s;
    margin: 0 auto;
    display: block;
    right: 0;
    left: 0;
  }

  .menu-items ul.menu li a:hover:after {
    content: "";
    background: #d2b48c;
    width: 100%;
  }

  .menu-items.fs {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
  }

  .menu-items.fs ul li {
    opacity: 1;
  }

  address p {
    color: #f9f9f9;
  }



  /*---------------------------------------
      HOME          
  -----------------------------------------*/

  #home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 100vh;
    width: 100%;
  }

  #home .container {
    width: 100%;
  }

  .home-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .countdown {
    text-align: center;
    margin: 50px 0;
    padding: 0;
  }

  .countdown li {
    color: #ffffff;
    list-style: none;
    display: inline-block;
    margin: 0 20px;
  }

  .countdown span {
    font-size: 25px;
  }

  .countdown h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 0;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 30px 0 0 0;
    text-align: center;
  }

  .social-icon .line {
    background: #ffffff;
    width: 50px;
    height: 2px;
    margin-right: 10px;
    position: relative;
    bottom: 5px;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #d2b48c;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 480px) {

    .home-info {
      padding: 0 1em 0 1em;
    }

    .countdown li {
      margin: 0 12px;
    }

    address {
      margin-top: 50px;
    }
  }

  @media screen and (max-width: 360px) {

    h1 {
      font-size: 1.50em;
    }

    .menu-items {
      margin: 100px 0;
    }

    .countdown span {
      font-size: 20px;
    }

    .countdown h3 {
      font-size: 12px;
    }
  }

/* Analog clock */
#analog-clock {
  display: block;
  margin: 30px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  background: transparent;
}

@media screen and (max-width: 480px) {
  #analog-clock {
    width: 180px;
    height: 180px;
  }
}

/* Top-left site logo with fixed dimensions to prevent layout shift when image loads */
.site-logo {
  position: fixed;
  left: 20px;
  top: 20px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  object-position: center;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: darken;
}

@media screen and (max-width: 480px) {
  .site-logo {
    width: 80px;
    height: 80px;
    left: 12px;
    top: 12px;
  }
}
