* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .orange{
    color:#FF8400;
  }
  .gray{
    color:gray;
  }
  body,p{
    font-size: 1rem; /* 16px */
    font-weight: 400;
    font-family: 'Lora', serif;
  }
  h1,h2,h3{
    font-family: 'Poppins', sans-serif;
    color:#1C4091;
    padding:1rem;

  }
  h1 {font-size: 3.5rem;   /* 56px */
    font-weight: 700;}
  h2 {font-size: 2.75rem;  /* 44px */
    font-weight: 600;}
  h3 {font-size: 2.125rem; /* 34px */
    font-weight: 600;}

  @media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }  /* 44px */
    h2 { font-size: 2.25rem; }  /* 36px */
    h3 { font-size: 1.75rem; }  /* 28px */
    p  { font-size: 0.95rem; }  /* ~15px */
  }
  
  @media (max-width: 767px) {
    h1 { font-size: 2rem; }     /* 32px */
    h2 { font-size: 1.75rem; }  /* 28px */
    h3 { font-size: 1.5rem; }   /* 24px */
    p  { font-size: 0.9rem; }   /* ~14.5px */
  }

  header{
    margin:2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    

  }
/* Nav Icon */
#nav-icon{

  display:none;
    
    width: 35px;
    height: 36px;
    position: relative;
    z-index: 30;
    cursor: pointer;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;

    
    top:5px;
  }

  
  #nav-icon span {
    display: block;
    position: absolute;
    height: 6px;
    width: 120%;
    background: #1C4091;
    border-radius: 9px;
    opacity: 1;
    right: 0;

    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
#nav-icon span:nth-child(1) {
    top: 0px;
    width:35px;
  }
  
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 18px;
  }
  
#nav-icon span:nth-child(4) {
    top: 36px;
    width:30px;
  }
  
#nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
#nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  /* Menu */
  .menu{
    display:flex;
    flex-direction: column;
    gap:1.5rem;
    
  }
  nav{
    position: fixed;
    top: 0;
    right: -100%;  
    width: 250px;
    height: 250px;
    background: linear-gradient(
  to bottom right,
  rgba(255, 255, 255, 0.2),
  rgba(255, 255, 255, 0.05)
);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px); /* key to glassmorphism */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);

    display: flex;
    flex-direction: column;

    gap: 1rem;
    padding-left: 2rem;
    padding-top:5rem;
    transition: left 0.3s ease;
    z-index: 20;

    margin:1rem;
    border-radius: 10px;
  }
  #nav-icon.open + nav {
    right: 0;
  }
 a{
    text-decoration: none;
    color:black;
  }
  .nav-link , .navs-link{
    position: relative;
  }
  .navs-link{
    margin:auto;
  }
  .nav-link:hover , .navs-link:hover{
    color:#1C4091;
  }

  .nav-link::after {
  content:'';
  position: absolute;
  left: 0;
  bottom:-8px;    /* Distance from text (space) */
  width: 60px;
  height: 4px;          /* Thickness of the line */
  background-color: #1C4091; /* Or any color */
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;

  }
  
  .nav-link:hover::after , .navs-link:hover::after {
    transform: scaleX(1);
  }
  .navigation{
    display:flex;
    gap:5rem;
  }
  .navs-link::after {
    content:'';
    position: absolute;
    left: 0px;
    bottom:-10px;    /* Distance from text (space) */
    width: 100%;
    height: 4px;          /* Thickness of the line */
    background-color: #1C4091; /* Or any color */
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
  
    }

  .divider{
    background-color: #1C4091;
    width:100px;
    height:10px;
    margin:3rem;
  }

/* Hero */
.hero{
  display:flex;
  flex-direction: column;
  align-items: center;
  margin:1rem;
  text-align: center;

}
.hero img{
  width:50%;
 
}
.hero-text{
  margin-top:3rem;
  margin-bottom:3rem;

}
.hero p{
  padding-left:8rem;
  padding-right:8rem;
}
/* tabbed navigation */
.services{
  display:flex;
  flex-direction: row;
  gap:1rem;
  margin:5rem;
}
.service{
  padding:2rem;
  display:flex;
  flex-direction: column;
}
.s-title{
  display:flex;
  flex-direction: row;
  gap:1rem;
  justify-content: center;
  align-items: center;
  width:100%;

  padding-bottom:1rem;
}
.s-content{
  text-align:justify;
  
  width:100%;
}
.service img{
  width:100px;
}
.tabs{
  display: flex;
  flex-direction: column;
  gap:1rem;
  
}
.tab-button{
  all:unset;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:1rem;
  position: relative;

  padding-right:0.5rem;
}
.tab-button img{
  width:50px;
  
}
.tab-button:hover{
  color:#1C4091;
}
.tab-button::after {
  content:'';
  position: absolute;
  right: 0;
  top:0;    /* Distance from text (space) */
  width: 4px;
  height: 100%;          /* Thickness of the line */
  background-color: #1C4091; /* Or any color */
  transition: transform 0.3s ease;
  transform: scaleY(0);
  transform-origin: top;

  }
  
  .tab-button:hover::after, .tab-button.active::after {
    transform: scaleY(1);
  }
  .tab-button.active{
    color:#1C4091;
  }
.info{
  width:100%;
  text-align: center;

  background: linear-gradient(
  to bottom right,
  rgba(255, 255, 255, 0.2),
  rgba(255, 255, 255, 0.05)
); 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px); /* key to glassmorphism */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.product{
  display: flex;
  flex-direction: row;
}
.product img{
  width:20px;
}
ul.custom-bullet {
  list-style: none;
  padding-left: 0;
}

ul.custom-bullet li {
  background: url('imgs/bullet.svg') no-repeat left center;
  background-size: 30px 30px;
  padding-left: 40px;
  margin-bottom: 0.5rem;
}
ul{
  padding-left: 20px;
}

/* About */
.about{
  display:flex;
  flex-direction: column;

  background-color: #D3E2FD;
  padding:2rem;
  border-radius:10px;
  margin:2rem;
  
}
.a-tabs{
  display:flex;
  flex-direction: row;
  gap:1rem;

  padding-left:100px;
  border-radius:10px;
  padding-top:8px;
}

.a-tab-button{
  all:unset;
  cursor: pointer;
  padding:1rem;

  border-bottom: none;

  position: relative;
  top: 1px; 

  transition: background-color 0.3s ease;
}

.a-tab-button:hover{
  background-color: #A8C7FA;

  border-radius: 15px;
  transform: scaleY(1);
}

  .a-tab-button.active{
    background-color:white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px); /* key to glassmorphism */
  -webkit-backdrop-filter: blur(12px);

    border-top-right-radius: 15px;
    border-top-left-radius: 15px;


  }
  .a-tab-button.active:hover {
    transform: scaleY(1);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;

  }
  .about-info{
    
    text-align: center;
  
    background-color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px); /* key to glassmorphism */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 10px;
    padding:1rem;
    margin-left: 5rem;
    
  }
  .a-info{
    
    flex-direction: column;
    justify-content: center;
    text-align: justify;
  }
  .a-info h3{
    text-align: center;
    padding: 1rem;
  }
  /*
  .ceo-mobile{
    width:200px;
    height:180px;
    display:none;
    margin:auto;
    padding-bottom: 10px;
  } */
  .ceo-desktop{
    margin:auto;
    width:160px;
    height:180px;
    padding-right:20px;
  }
  .content{
    display:flex;
    flex-direction: row;
    padding:3rem;
  }
  .content p{
    margin:auto;
  }
  .content img{
    padding-bottom: 0.5rem;
  }

  /* Contact */
  .contact{
    display:flex;
    flex-direction: column;
    margin:3rem;
    padding:3rem;
    background-color: #D3E2FD;
    padding-left:10rem;
    padding-right:10rem;
    border-radius:10px;
    
  }
  .contact-info{
    background-color:white;
  /*
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);  */

    border-radius: 10px;
    padding:2rem;

    width:100%;
    border-top: none;
    z-index: 5;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  }
  .c-tabs{
    display:flex;
    flex-direction: row;
    gap:1rem;
  
   
    border-radius:10px;
    padding-top:8px;
    padding-left:10px;
  
  }
  
  .c-tab-button{
    all:unset;
    cursor: pointer;
    padding:10px;
  
    border-bottom: none;
  
  
    position: relative;
    top: 1px; 
  
    transition: background-color 0.3s ease;
  }
  
  .c-tab-button:hover{
    background-color: #A8C7FA;
  
    border-radius: 15px;
    transform: scaleY(1);
  }
  
    .c-tab-button.active{
      background-color:white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px); /* key to glassmorphism */
    -webkit-backdrop-filter: blur(12px);
  
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
  
  
    }
    .c-tab-button.active:hover {
      transform: scaleY(1);
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
  
    }
    .c-info h3{
      margin:auto;
    }
    .c-info{
      display: flex;
      flex-direction: column;
    }
    form{
      padding:5rem;
      text-align: left;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(12px); /* key to glassmorphism */
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 10px;
    padding: 10px;
    color: black;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-family: 'Lora', serif;
  }
  
  .required::after {
    content: " *";
    color: red;
  }
  
    form button{
   
      border-color: #1C4091;
      font-family: 'Poppins';
      color:black;
      border-radius: 30px;
      background-color: white;
      padding:10px;
      padding-left: 20px;
      padding-right: 20px;
      cursor: pointer;
      transition: transform 0.2s;
    }
    form button:hover {
      transform: scale(1.05);
      background-color: #1C4091;
      color:white;
    }
    /* Footer */

  footer{
    display: flex;
    flex-wrap: row;
    padding-left:3rem;
    padding-right:3rem;
    padding-top:2rem;
    padding-bottom:1rem;
    justify-content: space-between;

    background-color: whitesmoke;
    border-radius: 30px;

    z-index: 100;
    position: sticky;
    
  }
  footer p{
    font-size: 14px;
  }
  .links {
    display: flex;
    flex-direction: column;
    gap:1rem;
  }
  .s-links{
    display:flex;
    flex-wrap:wrap;
    padding:0.5rem;
    margin:auto;
    justify-content: center;
    gap:3rem;
  }

  .s-link{
    display: flex;
    flex-direction: column;
    gap:2rem;
    align-items: center;
    padding:1rem;
    border-radius: 15px;
    background-color: white;
    

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px); /* key to glassmorphism */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .link{
    display: flex;
    flex-direction: row;
    gap:1rem;
  }
  .link img, .s-link img{
    width:30px;
    height:30px;
  }
  .link img:hover, .s-link:hover{
    transform: scale(1.08);
    transition: transform 0.2s;
  }
  
  .logo{
    margin:auto;
  }
  .logo img{
    width:300px;
  }
  .site-map{
    display: flex;
    flex-direction: column;
    gap:0.8rem;
    margin:auto;
  }
  .f-nav-link{
    position: relative;
  }
  .f-nav-link:hover{
    color:#1C4091;
  }


@media (max-width:1024px){
  .hero-text{
    margin-top:2rem;
    margin-bottom:2rem;
  }
  .hero p{
    padding-left:2rem;
    padding-right:2rem;
  }
  .divider{
    width:70px;
    height: 7px;
  }
  .services{
    margin:1rem;
  }
  .contact{
    margin:1rem;
  }
  .tabs p{
    display: none;
  }
  .ceo-desktop{
    width:160px;
    height:210px;
    padding-right:10px;
  }
  .content{
    flex-direction: column;
    padding:0.5rem;
  }
  form{
    padding:0.5rem;
  }
  footer{
    padding:2rem;
  }

}
@media (max-width:767px){
  header img{
    width:150px;
  }
  #nav-icon{
    width:20px;
  }
  #nav-icon span{
    height:4px;
  }
  #nav-icon span:nth-child(1) {
    top: 0px;
    width:25px;
  }
  
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 9px;
    width:30px;
  }
  
#nav-icon span:nth-child(4) {
    top: 18px;
    width:20px;
  }

  .hero img{
    width:90%;
  }
  .divider{
    width:50px;
    height:5px;
    margin:2rem;
  }
  .hero-text{
    margin-top:1rem;
    margin-bottom:1rem;
  }
  .hero p{
    padding-left:0rem;
    padding-right:0rem;
  }
  .services{
    margin:1rem;
}
  .about{
  margin:0.3rem;
  padding:1rem;
  }
  .contact{
    margin:0.3rem;
  padding:1rem;
  }
  .service img{
    display: none;
  }
  .service{
    padding:1rem;
  }
  .content{
    flex-direction: column;
    padding:0.5rem;
  }
  .about-info{
    margin:0rem;
    padding:0.3rem;
  }
  .contact-info{
    margin:0rem;
    padding:0.3rem;
  }

  /*
  .ceo-desktop{
    display:none;
  }
  .ceo-mobile{
    display:flex;

  }*/
  footer{
    flex-direction: column;
    gap:2rem;
  }
  .logo img{
    width:200px;
  }
  #nav-icon{
    display: flex;
  }
  .navigation{
    display:none;
  }
  .link img{
    width:20px;
    height:20px;
  }
  .a-tabs{
    padding-left:10px;
  }

}