@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
    scroll-behavior: smooth;

    /* for dynamic theming */
    /* brand foundation */
  --brand-hue: 200;
  --brand-saturation: 100%;
  --brand-lightness: 50%;
  --brand-opacity:100%;
  /* --surface-text-bg: */

  /* light */
  --brand-light: hsl(var(--brand-hue) var(--brand-saturation) var(--brand-lightness));
  --text1-light: hsl(var(--brand-hue) var(--brand-saturation) 10%);
  --text2-light: hsl(var(--brand-hue) 30% 30%);
  --text3-contrast-light: hsl(var(--brand-hue) var(--brand-saturation) 95%);
  --surface1-light: hsl(var(--brand-hue) 25% 90%);
  --surface2-light: hsl(var(--brand-hue) 20% 99%);
  --surface3-light: hsl(var(--brand-hue) 20% 92%);
  --surface4-light: hsl(var(--brand-hue) 20% 85%);
  --navigatiion1-light: hsl(var(--brand-hue) var(--brand-saturation) 40%);
  --navigatiion-button-light: hsl(var(--brand-hue) var(--brand-saturation) 25%);
  --button-light: hsl(var(--brand-hue) var(--brand-saturation) 10%);
  --surface-shadow-light: var(--brand-hue) 10% 20%;
  --shadow-strength-light: .02;
  --surface-transparent-light: hsl(from var(--surface1-light) h s l / 50%); 

  /* dark */
  --brand-dark: hsl(
    var(--brand-hue) 
    calc(var(--brand-saturation) / 2)
    calc(var(--brand-lightness) / 1.5)
  );
  --text1-dark: hsl(var(--brand-hue) 15% 85%);
  --text2-dark: hsl(var(--brand-hue) 5% 65%);
  --text3-contrast-dark: hsl(var(--brand-hue) 10% 90%);
  --surface1-dark: hsl(var(--brand-hue) 10% 10%);
  --surface2-dark: hsl(var(--brand-hue) 10% 15%);
  --surface3-dark: hsl(var(--brand-hue) 5%  20%);
  --surface4-dark: hsl(var(--brand-hue) 5% 25%);
  --navigatiion1-dark: hsl(var(--brand-hue) var(--brand-saturation) 40%);
  --navigatiion-button-dark: hsl(var(--brand-hue) var(--brand-saturation) 45%);
  --button-dark: hsl(var(--brand-hue) var(--brand-saturation) 70%);
  --surface-transparent-dark: hsl(from var(--surface1-dark) h s l / 50%); 

  --surface-shadow-dark: var(--brand-hue) 50% 3%;
  --shadow-strength-dark: .8;

  /* dim */
  --brand-dim: hsl(
    var(--brand-hue) 
    calc(var(--brand-saturation) / 1.25)
    calc(var(--brand-lightness) / 1.25)
  );
  --text1-dim: hsl(var(--brand-hue) 15% 75%);
  --text2-dim: hsl(var(--brand-hue) 10% 61%);
  --text3-contrast-dim: hsl(var(--brand-hue) 10% 80%);
  --surface1-dim: hsl(var(--brand-hue) 10% 20%);
  --surface2-dim: hsl(var(--brand-hue) 10% 25%);
  --surface3-dim: hsl(var(--brand-hue) 5%  30%);
  --surface4-dim: hsl(var(--brand-hue) 5% 35%);
  --navigatiion1-dim: hsl(var(--brand-hue) var(--brand-saturation) 45%);
  --navigatiion-button-dim: hsl(var(--brand-hue) var(--brand-saturation) 50%);
  --button-dim: hsl(var(--brand-hue) var(--brand-saturation) 55%);
  --surface-transparent-dim: hsl(from var(--surface1-dim) h s l / 50%); 
  --surface-shadow-dim: var(--brand-hue) 30% 13%;
  --shadow-strength-dim: .2;
  /* color-scheme: light; */
}

:root {
    
    /* --light-blue:#E9F1FA;
    --bright-blue:#00ABE4;
    --white-italic:#F8F8F9;
    --dark-blue:#111439;
    --primary-color: #161b22;
    --secondary-color: #0d1117;
    --tertiary-color: #29374b;
    --text1-color: white;
    --text2-color: black;
    --footer-ptext-color: var(--text2-color);
    --button1-color: #042359;
    --main-background-color: #ffffffde;
   
    --ar-content-items: 3; */
    --ar-content-items: 3;
    --mid-blue:#4d6e94;
    --tertiary-color: #29374b;
    color-scheme: light;

    /* set defaults */
    --brand: var(--brand-light);
    --text1: var(--text1-light);
    --text2: var(--text2-light);
    --text3-contrast: var(--text3-contrast-light);
    --surface1: var(--surface1-light);
    --surface2: var(--surface2-light);
    --surface3: var(--surface3-light);
    --surface4: var(--surface4-light);
    --navigatiion1: var(--navigatiion1-light);
    --navigatiion-button: var(--navigatiion-button-light);
    --button: var(--button-light);
    --surface-transparent: var(--surface-transparent-light);
    --surface-shadow: var(--surface-shadow-light);
    --shadow-strength: var(--shadow-strength-light);


}


/* body {
    margin: 0;
    padding: 0px;
    overflow-x: hidden;
    box-sizing: border-box;
    --width: calc(100vw - 250px);
    background-color: var(--surface1);
    color: var(--text1);
    line-height: 1.5;
    /* background: linear-gradient(-90deg, blue, rgb(244, 130, 149)), 
    url("../img/web_bg.png"); */
    /* background-image: url("../img/web_bg.png"); */
    font-family: "Montserrat", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
} */

::selection {
    background: #a640f5;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
article {
    user-select: none;
}

a {
    color: var(--text1);
}

::-webkit-scrollbar {
    width: 0;
    z-index: 1000;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #9900ba;
    border-radius: 44px;
    z-index: 1000;
}

.navigation {
    position: fixed;
    height: 80px;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: var(--navigatiion1); */
    background: var(--main-background-color);
    flex-direction: row;
    box-shadow: 5px 0 5px #00000063, 10px 0 10px #0000004d,
        20px 0 20px #0000004d;
    z-index: 999;
    transition: .5s ease-in-out;
    color: var(--text3-contrast);
}

.navigation.active {
    width: 250px;
}

.navigation h1 {
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    padding: 15px;
    cursor: pointer;
}

.navigation ul {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;

    padding: 10px;
}

.navigation ul li {
    position: relative;
    list-style: none;
    margin: 5px 10px;
}

.navigation ul li a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    padding: 15px 30px;
    /* background: var(--navigatiion-button); */
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    color: var(--text3-contrast);

    /* box-shadow: 3px 3px 5px black, -3px -3px 5px #ffffff25; */
}

.navigation ul li a::before,
.navigation ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 50%;
    background: var(--tertiary-color);
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.navigation ul li a::after {
    top: inherit;
    bottom: 0;
    left: inherit;
    right: -100%;
}

.navigation ul li a:hover::before,
.navigation ul li a.active::before {
    left: 0;
}

.navigation ul li a:hover::after,
.navigation ul li a.active::after {
    right: 0;
}

.container {
    position: relative;
    width: 100%;
    /* height: 100%; */
    margin-top: 100px;
    min-height: 100vh;
    /* background: var(--main-background-color); */
    display: flex;
    align-content: center;
    flex-direction: column;
    overflow: hidden;
    /* background: linear-gradient(90deg, #d9f4f8, #f4d9d3); */
    /* background: linear-gradient(pink, blue), 
    url("../img/web_bg.png"); */
    /* background-image: url("../img/web_bg.png"); */
    grid-template-columns: repeat(6, 1fr);
}

.layer {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin-left: 100%;
    overflow-x: hidden;
    transition: .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    box-shadow: 0 0 5px rgba(0, 0, 0, .5),
        0 0 10px rgba(0, 0, 0, .5),
        0 0 20px rgba(0, 0, 0, .5);
}

.layer.main {
    width: var(--width);
    height: 100vh;
    overflow: hidden;
}

.layer.active {
    margin-inline-start: 0;
    transition-delay: .7s;

}

@media (max-width: 768px) {
    .navigation {
        width: 0;
    }

    .container {
        width: 100%;
        margin-inline-start: 0;
    }

    .layer {
        width: 100%;
    }

    .layer.active {
        margin-left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active~.container .layer.active {
        margin-left: 250px;
    }

    .layer .main {
        width: 100vw;
        height: 100vh;
    }

    .about_container {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-height: 50vh;
        width: 300vw;
        margin-left: 0;
        transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .about_container.one {
        margin-left: 0;
    }

    .about_container.two {
        margin-left: -100vw;
    }

    .about_container.three {
        margin-left: -200vw;
    }

    .tip {
        margin-left: 0;
    }
}

.main-footer {
    position: relative;
    /* background-color: var(--main-background-color); */
    /* width: 81000%; */
    top: 20px;
    margin: 0 auto;
}

.footer-container {
    max-width: 100%;
    min-height: 0px;
    margin-left: auto;
    margin-right: auto;
    top:20px;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

.footer-links-row {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
}

.footer-links-column {
    flex-direction: column;
    flex: 1;
    padding-bottom: 40px;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}
.heading-5 {
    font-family: Avenir, sans-serif;
    font-size: 16px;
    font-weight: 800;
}
.logo-wrapper img{
width: 50%;
height: auto;
/* border-radius: 50%;
overflow: hidden; /* Ensure the image stays within the circular boundary */
/* border: 5px solid #29374b;
object-fit:fill; */ 
object-fit:fill;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}
.footer-link-item {
    color: var(--text1-color);
    padding-top: 5px;
    padding-bottom: 5px;
    text-decoration: none;
    display: block;
}
.flex-row-left {
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        display: flex;
    
}
.padding-right-30px {
    padding-right: 30px;
}
.detail {
    color: var(--mid-grey);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica,sans-serif;
    font-weight: 400;
    line-height: 22px;
}
.padding-50px {
    padding-top: 50px;
    padding-bottom: 40px;
}
.paragraph {
    color: var(--footer-ptext-color);
    text-align: left;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
.paragraph:hover {
    color: var(--mid-blue);
}
.rad-shadow {
    border: 1px solid hsl(var(--brand-hue) 10% 50% / 15%);
    box-shadow: 0 1rem .5rem -.5rem;
    box-shadow:
      0 2.8px 2.2px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .03)),
      0 6.7px 5.3px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .01)),
      0 12.5px 10px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .02)),
      0 22.3px 17.9px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .02)),
      0 41.8px 33.4px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .03)),
      0 100px 80px hsl(var(--surface-shadow) / var(--shadow-strength))
    ;
  }

    .contact_us_container {
    width: 90%;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
     margin: 24px auto;
  }

  /* Contact Info Boxes */
  .contact_us_home {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-home {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .info-home:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
  }

  .info-home i {
    font-size: 28px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(0deg, #c017bb, #e5242a);
    color: #fff;
    transition: transform 0.3s ease;
  }

  .info-home:hover i {
    transform: scale(1.2);
  }

  .info-home a {
    color: var(--text2);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .info-home:hover a {
    color: var(--accent);
  }

  .info-home .iname {
    font-size: 18px;
    font-style: italic;
    color: var(--text2);
  }

  .info-home h3 {
    margin: 0;
  }

  .info-home span {
    font-size: 14px;
    color: var(--text2);
  }

  /* Form */
  form {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 30px;
    
  }

  form h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text);
  }

  .inp_field {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .inp_field:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  }

  .inp_field i {
    color: var(--accent);
    font-size: 20px;
  }

  .inp_field input {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    background: none;
    color: var(--text2);
  }

  .message {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 25px;
    background: rgba(255,255,255,0.05);
    color: var(--text2);
    border: none;
    outline: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    resize: vertical;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .message:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  }

  /* Buttons */
  .btn {
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .btn--dark {
    background-color: var(--button-color);
    color: #fff;
  }

  .btn--dark:hover {
    background-color: #1e40af;
    transform: scale(1.05);
  }

  .submit-btn {
    background-color: #044a7c;
    color: #fafafa;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
  }

  .submit-btn:hover {
    background-color: #1e3a8a;
    transform: scale(1.05);
  }

  /* Responsive */
  @media(min-width: 768px) {
    .contact_us_home {
      flex-direction: column;
      justify-content: space-between;
    }

    .info-home {
      flex: 1;
      flex-direction: column;
      text-align: center;
    }

    form {
      width: 50%;
    }
  }

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    filter: invert(1);
}
.img-container {
    width: 400px;
    height: 400px;
    background: url("../img/photo.jpg") no-repeat top left;
    background-size: cover;
}
.img-container img {
    object-fit: cover;
}
.circular-fade {
    position: relative;
    width: 70px;      /* size of image */
    height: 70px;
    border-radius: 50%;
    overflow: hidden; /* ensures circular shape */
    
    /* Fade from center to transparent edges */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
     margin-left: auto;
     margin-top: 5px;
     margin-right: 15px; 
    
    display: block;
}

.circular-fade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width:491px){
    .contact_us_container{
        flex-direction: column-reverse;
        padding-inline-start: 10px;
        padding-inline-end: 10px;
    }
    .contact_us_home{
        flex-direction: column-reverse;
        margin-inline-start: 10px;
        margin-inline-end: 10px;

    }
}


@media (prefers-color-scheme: dark) {
    :root {
      color-scheme: dark;
  
      --brand: var(--brand-dark);
      --text1: var(--text1-dark);
      --text2: var(--text2-dark);
      --text3-contrast: var(--text3-contrast-dark);
      --surface1: var(--surface1-dark);
      --surface2: var(--surface2-dark);
      --surface3: var(--surface3-dark);
      --surface4: var(--surface4-dark);
      --navigatiion1: var(--navigatiion1-dark);
      --navigatiion-button: var(--navigatiion-button-dark);
      --surface-transparent: var(--surface-transparent-dark);
      --button: var(--button-dark);
      --surface-shadow: var(--surface-shadow-dark);
      --shadow-strength: var(--shadow-strength-dark);
    }
  }
  
  [color-scheme="light"] {
    color-scheme: light;
  
    --brand: var(--brand-light);
    --text1: var(--text1-light);
    --text2: var(--text2-light);
    --text3-contrast: var(--text3-contrast-light);
    --surface1: var(--surface1-light);
    --surface2: var(--surface2-light);
    --surface3: var(--surface3-light);
    --surface4: var(--surface4-light);
    --navigatiion1: var(--navigatiion1-light);
    --navigatiion-button: var(--navigatiion-button-light);
    --surface-transparent: var(--surface-transparent-light);
    --button: var(--button-light);
    --surface-shadow: var(--surface-shadow-light);
    --shadow-strength: var(--shadow-strength-light);
  }
  
  [color-scheme="dark"] {
    color-scheme: dark;
    
    --brand: var(--brand-dark);
    --text1: var(--text1-dark);
    --text2: var(--text2-dark);
    --text3-contrast: var(--text3-contrast-dark);
    --surface1: var(--surface1-dark);
    --surface2: var(--surface2-dark);
    --surface3: var(--surface3-dark);
    --surface4: var(--surface4-dark);
    --navigatiion1: var(--navigatiion1-dark);
    --navigatiion-button: var(--navigatiion-button-dark);
    --button: var(--button-dark);
    --surface-transparent: var(--surface-transparent-dark);
    --surface-shadow: var(--surface-shadow-dark);
    --shadow-strength: var(--shadow-strength-dark);
  }
  
  [color-scheme="dim"] {
    color-scheme: dark;
  
    --brand: var(--brand-dim);
    --text1: var(--text1-dim);
    --text2: var(--text2-dim);
    --text3-contrast: var(--text3-contrast-dim);
    --surface1: var(--surface1-dim);
    --surface2: var(--surface2-dim);
    --surface3: var(--surface3-dim);
    --surface4: var(--surface4-dim);
    --navigatiion1: var(--navigatiion1-dim);
    --navigatiion-button: var(--navigatiion-button-dim);
    --button: var(--button-dim);
    --surface-transparent: var(--surface-transparent-dim);
    --surface-shadow: var(--surface-shadow-dim);
    --shadow-strength: var(--shadow-strength-dim);
  }
  