*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
  }
  body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
  }
  body::-webkit-scrollbar{ 
    display: none;
  }
  .mobile-nav-icon,.mobile-nav-container{
   display: none; 
  }
  .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999; /* Ensure it's above other content */
  }
  
  .whatsapp-icon img {
    width: 50px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Makes it round */
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
  }
  @import url(www.hostinger.in/tutorials/best-html-web-fonts);
  #navbar{
    height: 100px;
    width:100%;
    border-bottom: 1px solid rgba(73, 71, 71, 0.452);
    /* background-color: rgb(138, 0, 0); */
    /* background-color:hsl(196, 100%, 81%); */
    /* background-color: rgba(2, 105, 142, 0.748); */
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30  px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
    padding: 10px;
    overflow: hidden;
}
.subnav{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
}
.imgclass{
    height: 100%;
    width:40%;
    /* background-color: hotpink; */
    /* display: flex; */
    /* align-items: center; */
    justify-content: left;
}
.imgclass img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}
.links{
    height: 100;
    width: 38%;
    /* background-color: palegoldenrod; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.links a{
   font-family:-apple-system,BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   font-size: 17px;
    text-decoration:none;
    color:#022b2b;  
    transition: all 1.1s;
    position: relative;
}
.links a:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 4px;
    background-color: #f88030;
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    transform: scaleX(0);
}

.links a:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  .topcon{
    height: 300px;
    width: 100%;
  }
  .topcon img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  :root {
    --primary-color: #010712;
    --secondary-color: #818386;
    --bg-color: #FCFDFD;
    --button-color: #3B3636;
    --h1-color: #3F444C;
  }
  
  [data-theme="dark"] {
    --primary-color: #FCFDFD;
    --secondary-color: #818386;
    --bg-color: #010712;
    --button-color: #818386;
    --h1-color: #FCFDFD;
  }
  
  /* [data-theme="light"]{
    --primary-color: #00caca;
    --secondary-color: #818386;
    --bg-color: #d60000;
    --button-color: #9e9400;
    --h1-color: #a200ff;
  } */
  * {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
  }
  
  .contact-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
    /* padding: 20px; */
  }
  
  .left-col {
    width: 45vw;
    height: 100%;
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .left-col iframe{
    height: 90%;
    width: 90%;

  }
  
  .logo {
    width: 10rem;
    padding: 1.5rem;
  }
  
  .right-col {
    background: var(--bg-color);
    width: 50vw;
    height: 100vh;
    /* padding: 20px; */
    padding: 5rem 3.5rem;

  }
  
  h1, label, button, .description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
  }
  
  h1 {
    color:var(--h1-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
  }
  
  p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 0.01rem;
    width: 40vw;
    margin: 0.25rem 0;
  }
  
  label, .description {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.625rem;
  }
  
  form {
    width: 31.25rem;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
  }
  
  input, textarea, label {
    width: 40vw;
    display: block;
  }
  
  p, placeholder, input, textarea {
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  input::placeholder, textarea::placeholder {
    color: var(--primary-color);
  }
  
  input, textarea {
    color: var(--primary-color);
    font-weight: 500;
    background: var(--bg-color);
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
  }
  
  textarea {
    resize: none;
  }
  
  button {
    text-transform: uppercase;
    font-weight: 300;
    background: var(--button-color);
    color: var(--bg-color);
    width: 10rem;
    height: 2.25rem;
    border: none;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
  }
  
  input:hover, textarea:hover, button:hover {
    opacity: 0.5;
  }
  
  button:active {
    opacity: 0.8;
  }
  
  /* Toggle Switch */
  
  .theme-switch-wrapper {
    display: flex;
    align-items: center;
    /* justify-content: fl; */
    text-align: center;
    width: 160px;
    position: absolute;
    bottom:-50px;
    top: 0.5rem;
    right: 0;
  }
  
  .description {
      margin-left: 1.25rem;
    }
  
  .theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
  }
  
  .theme-switch input {
    display:none;
  }
  
  .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
  }
  
  .slider:before {
    background-color: #fff;
    bottom: 0.25rem;
    content: "";
    width: 26px;
    height: 26px;
    left: 0.25rem;
    position: absolute;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--button-color);
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  #error, #success-msg {
    width: 40vw;
    margin: 0.125rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: 'Jost';
    color: var(--secondary-color);
    }
  
  
    #success-msg {
    transition-delay: 3s;
    }
/*   
  @media only screen and (max-width: 950px) {
    .logo {
      width: 8rem;
    }
    h1 {
      font-size: 1.75rem;
    }
    p {
      font-size: 0.7rem;
    }
    input, textarea, button {
      font-size: 0.65rem;
    }
    .description {
      font-size: 0.3rem;
      margin-left: 0.4rem;
    }
    button {
      width: 7rem;
    }
    .theme-switch-wrapper {
      width: 120px;
    }
    .theme-switch {
    height: 28px;
    width: 50px;
  }
  
  .theme-switch input {
    display:none;
  }
  
  .slider:before {
    background-color: #fff;
    bottom: 0.25rem;
    content: "";
    width: 20px;
    height: 20px;
    left: 0.25rem;
    position: absolute;
    transition: .4s;
  }
    input:checked + .slider:before {
    transform: translateX(16px);
  }
  
  .slider.round {
    border-radius: 15px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  } */
  .footer{
    height: 600px;
    width: 100%;
    background-image:url(../img/footer-background-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
    padding: 20px;
  }
  .subfooter{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* background-color: rgba(51, 48, 46, 0.37); */
  }
  .numberone{
  height: 60%;
  width: 100%;
  /* background-color: pink; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  }
  .con1{
    height: 100%;
    width: 45%;
    /* background-color: red; */
    padding: 20px;
  }
  .con1 img{
    height: 150px;
    width: 60%;
  }
  .con1 p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.2px;
    text-align: left;
    color: white;
  }
  .con2{
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content:center;
    /* background-color: rebeccapurple; */
  }
  .subcon2{
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
  }
  .subcon2 i{
    color:rgb(1, 192, 255);
    /* color:  #2c73df;  */
    font-size: 28px;
    padding: 10px;
    margin-left: 9px;
  }
  .subcon2 h2{
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    margin-left:24px;
  }
  .con2 p{
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    padding: 20px;
    text-align: left;
    /* text-align: center; */
  }
  #lit{
    color:rgb(1, 192, 255);
    font-size: 16px;
    padding: 10px;
    text-align: left;
  }
  .subcon3{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
  }
  
  .subcon3 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
  }
  .con3{
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content:center;
    /* background-color: #3FA0C7; */
  }
  .subcon4{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: -20px;
  }
  .subcon4 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
    /* margin-left: 20px; */
  }
  .subcon4 p{
    margin-top: 0px;
    margin-left: -6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    /* padding: 20px; */
    /* text-align: left; */
  }
  .subcon5{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: -20px;
  }
  .subcon5 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
    /* margin-left: 20px; */
  }
  .subcon5 p{
    margin-top: 0px;
    margin-left: -6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    /* padding: 20px; */
    /* text-align: left; */
  }
  .numbertwo{
  height: 20%;
  width: 100%;
  /* background-color: darkblue; */
  display: flex;
  align-items: center;
  justify-content: left;
  }
  .subnumbertwo{
    height: 50%;
    width: 40%;
    /* background-color: #ff7300; */
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .subnumbertwo p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-left:20px;
    color: white;
  }
  .subnumbertwo a{
    text-decoration: none;
    font-size: 16px;
    color:rgb(0, 204, 255);
    font-family:'Roboto', sans-serif;
    padding: 10px;
  }
  .subnumbertwo a:hover{
    color:blueviolet;
  }
  .numberthree{
  height: 10%;
  width: 100%;
  /* background-color: saddlebrown; */
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .numberthree p{
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-left:20px;
    color: rgba(255, 255, 255, 0.405);
  }




  @media screen and (max-width:1200px) {
    *{
      padding: 0;
      margin:0;
      box-sizing: border-box;
    }
    body{
      width: 100vw;
      height: 100vh;
      overflow-x: hidden;
      font-family: 'Roboto', sans-serif;
      font-family: 'Montserrat', sans-serif;
      background-color: white;
    }
    body::-webkit-scrollbar{ 
      display: none;
    }
    @import url(www.hostinger.in/tutorials/best-html-web-fonts);
    #navbar{
      height: 100px;
      width:100%;
      border-bottom: 1px solid rgba(73, 71, 71, 0.452);
      /* background-color: rgb(138, 0, 0); */
      /* background-color:hsl(196, 100%, 81%); */
      /* background-color: rgba(2, 105, 142, 0.748); */
      /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
      /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30  px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
      padding: 10px  20px 10px 0px;
      overflow: hidden;
  }
  .subnav{
      height: 100%;
      width: 100%;
      /* background-color: blue; */
      display: flex;
      justify-content: space-between;
  }
  .imgclass{
      height: 100%;
      width:200px;
      /* background-color: hotpink; */
      /* display: flex; */
      /* align-items: center; */
      /* justify-content: left; */
  }
  .imgclass img{
      height: 100%;
      width: 100%;
      object-fit:cover;
      /* object-position: left; */
  }
  .links{
      height: 100;
      width: 50%;
      /* background-color: palegoldenrod; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  
  .links a{
     font-family:-apple-system,BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
     font-size: 17px;
      text-decoration:none;
      color:#022b2b;  
      transition: all 1.1s;
      position: relative;
  }
  .links a:after {
      content: '';
      position: absolute;
      left: 0px;
      bottom: -15px;
      width: 100%;
      height: 4px;
      background-color: #f88030;
      transform-origin: bottom right;
      transition: transform 0.5s ease;
      transform: scaleX(0);
  }
  
  .links a:hover:after {
      transform-origin: bottom left;
      transform: scaleX(1);
    }



    .topcon{
      height: 300px;
      width: 100%;
    }
    .topcon img{
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    :root {
      --primary-color: #010712;
      --secondary-color: #818386;
      --bg-color: #FCFDFD;
      --button-color: #3B3636;
      --h1-color: #3F444C;
    }
    
    [data-theme="dark"] {
      --primary-color: #FCFDFD;
      --secondary-color: #818386;
      --bg-color: #010712;
      --button-color: #818386;
      --h1-color: #FCFDFD;
    }
    
    /* [data-theme="light"]{
      --primary-color: #00caca;
      --secondary-color: #818386;
      --bg-color: #d60000;
      --button-color: #9e9400;
      --h1-color: #a200ff;
    } */
    * {
      margin: 0;
      box-sizing: border-box;
      transition: all 0.3s ease-in-out;
    }
    
    .contact-container {
      display: flex;
      flex-direction: column;
      width: 100vw;
      height: auto;
      background: var(--bg-color);
      padding: 20px;
      /* padding: 20px; */
    }
    
    .left-col {
      width: 100%;
      height: 400px;
      background-image: url();
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .left-col iframe{
      height: 400px;
      width: 100%;
  
    }
    
    .logo {
      width: 10rem;
      padding: 1.5rem;
    }
    
    .right-col {
      margin-top: 40px;
      background: var(--bg-color);
      width: 100%;
      height: auto;
      /* padding: 20px; */
      padding: 0;
  
    }
    
    h1, label, button, .description {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      letter-spacing: 0.1rem;
    }
    
    h1 {
      color:var(--h1-color);
      text-transform: uppercase;
      font-size: 2.5rem;
      letter-spacing: 0.5rem;
      font-weight: 300;
    }
    
    p {
      color: var(--secondary-color);
      font-size: 0.9rem;
      letter-spacing: 0.01rem;
      width: 100%;
      margin: 0.25rem 0;
    }
    
    label, .description {
      color: var(--secondary-color);
      text-transform: uppercase;
      font-size: 0.625rem;
    }
    
    form {
      width: 100%;
      position: relative;
      margin-top: 2rem;
      padding: 1rem 0;
    }
    
    input, textarea, label {
      width: 100%;
      display: block;
    }
    
    p, placeholder, input, textarea {
      font-family: 'Helvetica Neue', sans-serif;
    }
    
    input::placeholder, textarea::placeholder {
      color: var(--primary-color);
    }
    
    input, textarea {
      color: var(--primary-color);
      font-weight: 500;
      background: var(--bg-color);
      border: none;
      border-bottom: 1px solid var(--secondary-color);
      padding: 0.5rem 0;
      margin-bottom: 1rem;
      outline: none;
    }
    
    textarea {
      resize: none;
    }
    
    button {
      text-transform: uppercase;
      font-weight: 300;
      background: var(--button-color);
      color: var(--bg-color);
      width: 10rem;
      height: 2.25rem;
      border: none;
      border-radius: 2px;
      outline: none;
      cursor: pointer;
    }
    
    input:hover, textarea:hover, button:hover {
      opacity: 0.5;
    }
    
    button:active {
      opacity: 0.8;
    }
    
    /* Toggle Switch */
    
    .theme-switch-wrapper {
      display: flex;
      align-items: center;
      /* justify-content: fl; */
      text-align: center;
      width: 160px;
      position: absolute;
      top: -500px;
      right: 0;
    }
    
    .description {
        margin-left: 1.25rem;
      }
    
    .theme-switch {
      display: inline-block;
      height: 34px;
      position: relative;
      width: 60px;
    }
    
    .theme-switch input {
      display:none;
    }
    
    .slider {
      background-color: #ccc;
      bottom: 0;
      cursor: pointer;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      transition: .4s;
    }
    
    .slider:before {
      background-color: #fff;
      bottom: 0.25rem;
      content: "";
      width: 26px;
      height: 26px;
      left: 0.25rem;
      position: absolute;
      transition: .4s;
    }
    
    input:checked + .slider {
      background-color: var(--button-color);
    }
    
    input:checked + .slider:before {
      transform: translateX(26px);
    }
    
    .slider.round {
      border-radius: 34px;
    }
    
    .slider.round:before {
      border-radius: 50%;
    }
    
    #error, #success-msg {
      width: 40vw;
      margin: 0.125rem 0;
      font-size: 0.75rem;
      text-transform: uppercase;
      font-family: 'Jost';
      color: var(--secondary-color);
      }
    
    
      #success-msg {
      transition-delay: 3s;
      }
  /*   
    @media only screen and (max-width: 950px) {
      .logo {
        width: 8rem;
      }
      h1 {
        font-size: 1.75rem;
      }
      p {
        font-size: 0.7rem;
      }
      input, textarea, button {
        font-size: 0.65rem;
      }
      .description {
        font-size: 0.3rem;
        margin-left: 0.4rem;
      }
      button {
        width: 7rem;
      }
      .theme-switch-wrapper {
        width: 120px;
      }
      .theme-switch {
      height: 28px;
      width: 50px;
    }
    
    .theme-switch input {
      display:none;
    }
    
    .slider:before {
      background-color: #fff;
      bottom: 0.25rem;
      content: "";
      width: 20px;
      height: 20px;
      left: 0.25rem;
      position: absolute;
      transition: .4s;
    }
      input:checked + .slider:before {
      transform: translateX(16px);
    }
    
    .slider.round {
      border-radius: 15px;
    }
    
    .slider.round:before {
      border-radius: 50%;
    }
    
    } */
    .footer{
      height: 600px;
      width: 100%;
      background-image:url(../img/footer-background-image.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      background-position: 50% 50%;
      padding: 20px;
    }
    .subfooter{
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      /* background-color: rgba(51, 48, 46, 0.37); */
    }
    .numberone{
    height: auto;
    width: 100%;
    /* background-color: pink; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    }
    .con1{
      height: 100%;
      width: 50%;
      /* background-color: red; */
      padding: 20px;
    }
    .con1 img{
      height: 150px;
      width: 80%;
    }
    .con1 p{
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      letter-spacing: 1.2px;
      text-align: left;
      color: white;
    }
    .con2{
      height: 100%;
      width: 35%;
      display: flex;
      flex-direction: column;
      align-items: left;
      justify-content:center;
      /* background-color: rebeccapurple; */
    }
    .subcon2{
      display: flex;
      align-items: center;
      /* justify-content: space-evenly; */
    }
    .subcon2 i{
      color:rgb(1, 192, 255);
      /* color:  #2c73df;  */
      font-size: 28px;
      padding: 10px;
      margin-left: 9px;
    }
    .subcon2 h2{
      font-size: 24px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      color: white;
      margin-left:24px;
    }
    .con2 p{
      margin-top: 20px;
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      color: white;
      padding: 20px;
      text-align: left;
      /* text-align: center; */
    }
    #lit{
      color:rgb(1, 192, 255);
      font-size: 16px;
      padding: 10px;
      text-align: left;
    }
    .subcon3{
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -20px;
    }
    
    .subcon3 i{
      color:rgb(1, 192, 255);
      font-size: 18px;
      padding: 20px;
      text-align: left;
    }
    .con3{
      height: 100%;
      width: 35%;
      display: flex;
      flex-direction: column;
      align-items: left;
      justify-content:center;
      /* background-color: #3FA0C7; */
    }
    .subcon4{
      display: flex;
      align-items: center;
      /* justify-content: center; */
      margin-top: -20px;
    }
    .subcon4 i{
      color:rgb(1, 192, 255);
      font-size: 18px;
      padding: 20px;
      text-align: left;
      /* margin-left: 20px; */
    }
    .subcon4 p{
      margin-top: 0px;
      margin-left: -6px;
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      color: white;
      /* padding: 20px; */
      /* text-align: left; */
    }
    .subcon5{
      display: flex;
      align-items: center;
      /* justify-content: center; */
      margin-top: -20px;
    }
    .subcon5 i{
      color:rgb(1, 192, 255);
      font-size: 18px;
      padding: 20px;
      text-align: left;
      /* margin-left: 20px; */
    }
    .subcon5 p{
      margin-top: 0px;
      margin-left: -6px;
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      color: white;
      /* padding: 20px; */
      /* text-align: left; */
    }
    .numbertwo{
    height: 20%;
    width: 100%;
    /* background-color: darkblue; */
    display: flex;
    align-items: center;
    justify-content: left;
    }
    .subnumbertwo{
      height: 50%;
      width: auto;
      /* background-color: #ff7300; */
      display: flex;
      align-items: center;
      justify-content: left;
    }
    .subnumbertwo p{
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      padding-left:20px;
      color: white;
    }
    .subnumbertwo a{
      text-decoration: none;
      font-size: 16px;
      color:rgb(0, 204, 255);
      font-family:'Roboto', sans-serif;
      padding: 10px;
    }
    .subnumbertwo a:hover{
      color:blueviolet;
    }
    .numberthree{
    height: 10%;
    width: 100%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    
    justify-content: center;
    }
    .numberthree p{
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      padding-left:20px;
      color: rgba(255, 255, 255, 0.405);
    }
    
    }


@media screen  and (max-width:600px){
  .whatsapp-icon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999; /* Ensure it's above other content */
  }
  
  .whatsapp-icon img {
    width: 45px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Makes it round */
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
  }
  #navbar{
    height: 80px;
    width:100%;
    border-bottom: 1px solid rgba(73, 71, 71, 0.452);
  
    overflow-x: hidden;
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    padding: 0 10px 0px 0px;
    top: 0px;
    left: 0;
    z-index: 999;
    background-color: white;
}      
.mobile-nav-icon{
  height: 100%;
  width: fit-content;
  /* font-size: 20px; */
  color: black;
  display: grid;
  place-items: center;
  /* background-color: ; */
}
.mobile-nav-icon i{
  font-size: 25px;
  transition: 0.3s;
}
.mobile-nav-container{
  position: fixed;
  top: 80px;
  background-color: rgba(0, 0, 0, 0.308);
  /* backdrop-filter: blur(10px); */
  height: 300px;
  width: 100%;
  z-index: 999;
  left: -100%;
  transition: 0.4s;
  display: block;
}
.open-nav{
  left: 0%;
}
.mobile-nav-container ul{
  height: 100%;
  width: 40%;
  /* background-color: orangered; */
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  justify-content: space-evenly;
}
.mobile-nav-container ul a{
  font-size: 20px;
  color:#f76205;
  background-color: rgb(255, 255, 255);
  padding: 8px;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
}
.subnav{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
}
.imgclass{
    height: 100%;
    width:200px;
    /* background-color: hotpink; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: left; */
}
.imgclass img{
    height: 100%;
    width: 100%;
    object-fit:cover;
    /* object-position: left; */
}
.links{
    display: none;
}

    .topcon{
      height: 300px;
      width: 100%;
    }
    .topcon img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: left;
    }
    :root {
      --primary-color: #010712;
      --secondary-color: #818386;
      --bg-color: #FCFDFD;
      --button-color: #3B3636;
      --h1-color: #3F444C;
    }
    
    [data-theme="dark"] {
      --primary-color: #FCFDFD;
      --secondary-color: #818386;
      --bg-color: #010712;
      --button-color: #818386;
      --h1-color: #FCFDFD;
    }
    
    /* [data-theme="light"]{
      --primary-color: #00caca;
      --secondary-color: #818386;
      --bg-color: #d60000;
      --button-color: #9e9400;
      --h1-color: #a200ff;
    } */
    * {
      margin: 0;
      box-sizing: border-box;
      transition: all 0.3s ease-in-out;
    }
    
    .contact-container {
      display: flex;
      flex-direction: column;
      width: 100vw;
      height: auto;
      background: var(--bg-color);
      padding: 10px;
      /* padding: 20px; */
    }
    
    .left-col {
      width: 100%;
      height: 400px;
      background-image: url();
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .left-col iframe{
      height: 400px;
      width: 100%;
  
    }
    
    .logo {
      width: 10rem;
      padding: 1.5rem;
    }
    
    .right-col {
      margin-top: 40px;
      background: var(--bg-color);
      width: 100%;
      height: auto;
      /* padding: 20px; */
      padding: 0;
  
    }
    
    h1, label, button, .description {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      letter-spacing: 0.1rem;
    }
    
    h1 {
      color:var(--h1-color);
      text-transform: uppercase;
      font-size: 2.5rem;
      letter-spacing: 0.5rem;
      font-weight: 300;
    }
    
    p {
      color: var(--secondary-color);
      font-size: 0.9rem;
      letter-spacing: 0.01rem;
      width: 100%;
      margin: 0.25rem 0;
    }
    
    label, .description {
      color: var(--secondary-color);
      text-transform: uppercase;
      font-size: 0.625rem;
    }
    
    form {
      width: 100%;
      position: relative;
      margin-top: 2rem;
      padding: 1rem 0;
    }
    
    input, textarea, label {
      width: 100%;
      display: block;
    }
    
    p, placeholder, input, textarea {
      font-family: 'Helvetica Neue', sans-serif;
    }
    
    input::placeholder, textarea::placeholder {
      color: var(--primary-color);
    }
    
    input, textarea {
      color: var(--primary-color);
      font-weight: 500;
      background: var(--bg-color);
      border: none;
      border-bottom: 1px solid var(--secondary-color);
      padding: 0.5rem 0;
      margin-bottom: 1rem;
      outline: none;
    }
    
    textarea {
      resize: none;
    }
    
    button {
      text-transform: uppercase;
      font-weight: 300;
      background: var(--button-color);
      color: var(--bg-color);
      width: 10rem;
      height: 2.25rem;
      border: none;
      border-radius: 2px;
      outline: none;
      cursor: pointer;
    }
    
    input:hover, textarea:hover, button:hover {
      opacity: 0.5;
    }
    
    button:active {
      opacity: 0.8;
    }
    
    /* Toggle Switch */
    
    .theme-switch-wrapper {
      display: flex;
      align-items: center;
      /* justify-content: fl; */
      text-align: center;
      width: 160px;
      position: absolute;
      top: -280px;
      right: 0;
    }
    
    .description {
        margin-left: 1.25rem;
      }
    
    .theme-switch {
      display: inline-block;
      height: 30px;
      position: relative;
      width: 50px;
    }
    
    .theme-switch input {
      display:none;
    }
    
    .slider {
      background-color: #ccc;
      bottom: 0;
      cursor: pointer;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      transition: .4s;
    }
    
    .slider:before {
      background-color: #fff;
      bottom: 0.25rem;
      content: "";
      width: 26px;
      height: 23px;
      left: 0.25rem;
      position: absolute;
      transition: .4s;
    }
    
    input:checked + .slider {
      background-color: var(--button-color);
    }
    
    input:checked + .slider:before {
      transform: translateX(20px);
    }
    
    .slider.round {
      border-radius: 34px;
    }
    
    .slider.round:before {
      border-radius: 50%;
    }
    
    #error, #success-msg {
      width: 40vw;
      margin: 0.125rem 0;
      font-size: 0.75rem;
      text-transform: uppercase;
      font-family: 'Jost';
      color: var(--secondary-color);
      }
    
    
      #success-msg {
      transition-delay: 3s;
      }
 
      
      .footer{
        height: auto;
        width: 100%;
        background-image:url(../img/footer-background-image.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: 50% 50%;
        padding: 10px;
      }
      .subfooter{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        /* background-color: rgba(218, 100, 22, 0.37); */
      }
      .numberone{
      height: auto;
      width: 100%;
      /* background-color: pink; */
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: space-evenly;
      }
      .con1{
        height: 100%;
        width: 100%;
        /* background-color: red; */
        padding: 0px;
      }
      .con1 img{
        height: 100px;
        width: 200px;
        object-fit: contain;
      }
      .con1 p{
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        letter-spacing: 1.2px;
        text-align: left;
        color: white;
      }
      .con2{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content:center;
        /* background-color: rebeccapurple; */
        margin-top: 20px;
      }
      .subcon2{
        display: flex;
        align-items: center;
      
        /* justify-content: space-evenly; */
      }
      .subcon2 i{
        color:rgb(1, 192, 255);
        /* color:  #2c73df;  */
        font-size: 20px;
        padding: 20px 20px 20px 0px;
      margin-left: 0;
      
      }
      .subcon2 h2{
        font-size: 24px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: white;
        margin-left:0px;
      }
      .con2 p{
        margin-top: 0px;
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: white;
        padding: 10px 0px;
        text-align: left;
        line-height: 30px;
        /* text-align: center; */
      }
      #lit{
        color:rgb(1, 192, 255);
        font-size: 16px;
        padding: 10px;
        text-align: left;
      }
      .subcon3{
        display: flex;
        align-items: start;
        justify-content: center;
        margin-top: 0px;
      
      }
      
      .subcon3 i{
        color:rgb(1, 192, 255);
        font-size: 18px;
        padding: 20px 20px 20px 0px;
        text-align: left;
      }
      .con3{
        height: 100%;
        width: 35%;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content:center;
        /* background-color: #3FA0C7; */
      }
      .subcon4{
        display: flex;
        align-items: center;
        /* justify-content: center; */
        margin-top: -20px;
      }
      .subcon4 i{
        color:rgb(1, 192, 255);
        font-size: 18px;
        text-align: left;
        padding: 20px 20px 20px 0px;
      
        /* margin-left: 20px; */
      }
      .subcon4 p{
        margin-top: 0px;
        margin-left: -6px;
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: white;
        /* padding: 20px; */
        /* text-align: left; */
      }
      .subcon5{
        display: flex;
        align-items: center;
        /* justify-content: center; */
        margin-top: -20px;
      }
      .subcon5 i{
        color:rgb(1, 192, 255);
        font-size: 18px;
        text-align: left;
        padding: 20px 20px 20px 0px;
        /* margin-left: 20px; */
      }
      .subcon5 p{
        margin-top: 0px;
        margin-left: -6px;
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: white;
        /* padding: 20px; */
        /* text-align: left; */
      }
      .numbertwo{
      height: 20%;
      width: 100%;
      /* background-color: darkblue; */
      display: flex;
      align-items: center;
      justify-content: left;
      }
      .subnumbertwo{
        height: auto;
        width: 100%;
        /* background-color: #ff7300; */
        display: grid;
        grid-template-columns: repeat(4,auto);
        grid-gap: 20px;
        padding: 10px 0px;
      }
      .subnumbertwo p{
        font-size: 15px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        padding-left:0px;
        color: white;
        width: auto;
      }
      .subnumbertwo a{
        text-decoration: none;
        font-size: 15px;
        color:rgb(0, 204, 255);
        font-family:'Roboto', sans-serif;
        padding: 0px;
        width: 100%;
      }
      .subnumbertwo a:hover{
        color:blueviolet;
      }
      .numberthree{
      height: 10%;
      width: 100%;
      /* background-color: saddlebrown; */
      display: flex;
      align-items: center;
      
      justify-content: center;
      }
      .numberthree p{
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        padding-left:20px;
        color: rgba(255, 255, 255, 0.405);
      }
      
    }