*{margin:0;padding:0;box-sizing:border-box}

html{
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body{
  background:#fff;
  color:#666666;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  line-height:1.6;
  overflow-y: scroll;
}

a{color:rgba(31,174,218,0.829);text-decoration:none}
a:hover,a:active,a:focus{color:rgba(31,174,218,0.829);outline:none;text-decoration:none}
p{padding:0;margin:0 0 20px 0}
h1,h2,h3,h4,h5,h6{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;font-weight:400;margin:0 0 20px 0;padding:0}

.container{
  width:100%;
  padding-right:15px;
  padding-left:15px;
  margin-right:auto;
  margin-left:auto;
}

/* Full screen sections with snap scrolling */
section{
  min-height:100vh;
  scroll-snap-align:start;
  position:relative;
}

@media (min-width:576px){.container{max-width:95%}}
@media (min-width:768px){.container{max-width:90%}}
@media (min-width:992px){.container{max-width:85%}}
@media (min-width:1200px){.container{max-width:1400px}}
@media (min-width:1400px){.container{max-width:1600px}}

.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px;align-items:stretch}
.col-6,.col-md-4,.col-md-6,.col-md-8,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-11{position:relative;width:100%;padding-right:15px;padding-left:15px}
.col-6{flex:0 0 50%;max-width:50%}

@media (min-width:768px){
  .col-md-4{flex:0 0 33.333333%;max-width:33.333333%}
  .col-md-6{flex:0 0 50%;max-width:50%}
  .col-md-8{flex:0 0 66.666667%;max-width:66.666667%}
}

@media (min-width:992px){
  .col-lg-3{flex:0 0 25%;max-width:25%}
  .col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}
  .col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}
  .col-lg-6{flex:0 0 50%;max-width:50%}
  .col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}
  .offset-lg-1{margin-left:8.333333%}
  .offset-lg-2{margin-left:16.666667%}
  .order-lg-1{order:1}
  .order-lg-2{order:2}
  #services .col-lg-4{flex:0 0 20%;max-width:20%}
}

.order-1{order:1}
.order-2{order:2}
.pull-left{float:left}
.text-center{text-align:center}
.justify-content-center{justify-content:center}
.mt-5{margin-top:3rem}

.back-to-top{position:fixed;display:none;background:rgba(0,0,0,0.2);color:rgba(31,174,218,0.829);padding:6px 12px 9px 12px;font-size:16px;border-radius:2px;bottom:15px;right:15px;transition:background 0.5s;z-index:996}
.back-to-top:focus{background:rgba(0,0,0,0.2);color:#fff;outline:none}
.back-to-top:hover{background:rgba(31,174,218,0.829);color:#fff}

/* Mobile navigation */
#mobile-nav-toggle{display:none}
#mobile-nav{display:none}
#mobile-body-overly{display:none}

@media (max-width:768px){
  #mobile-nav-toggle{
    display:block;
    position:fixed;
    top:15px;
    right:15px;
    z-index:999;
    background:rgba(52,59,64,0.9);
    border:0;
    padding:10px 15px;
    color:#fff;
    cursor:pointer;
    border-radius:3px;
  }

  #mobile-nav-toggle .fa-bars,
  #mobile-nav-toggle .fa-times{
    color:#fff !important;
  }
  
  #mobile-nav{
    display:block;
    position:fixed;
    top:0;
    left:-260px;
    width:260px;
    height:100%;
    z-index:998;
    background:rgba(52,59,64,0.95);
    transition:left 0.4s;
    padding:50px 20px 20px 20px;
    overflow-y:auto;
  }
  
  #mobile-nav ul{
    list-style:none;
    padding:0;
    margin:0;
  }
  
  #mobile-nav ul li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  
  #mobile-nav ul li a{
    color:#fff;
    text-decoration:none;
    display:block;
  }
  
  body.mobile-nav-active #mobile-nav{
    left:0;
  }
  
  #mobile-body-overly{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background:rgba(52,59,64,0.7);
    z-index:997;
  }
}

/* Header */
#header{
  padding:30px 0;
  height:92px;
  position:fixed;
  left:0;
  top:0;
  right:0;
  transition:all 0.5s;
  z-index:997;
}

#header #logo{float:left;max-width:285px}
#header #logo img{padding:0;margin:-10px;width:100%}

@media (max-width:768px){
  #header #logo img{max-height:50px}
}

#header.header-fixed{
  background:rgba(52,59,64,0.9);
  padding:15px 0;
  height:72px;
  transition:all 0.5s;
}

.nav-menu,.nav-menu *{margin:0;padding:0;list-style:none}
.nav-menu ul{position:absolute;display:none;top:100%;left:0;z-index:99}
.nav-menu li{position:relative;white-space:nowrap}
.nav-menu > li{float:left}
.nav-menu li:hover > ul{display:block}
#nav-menu-container{float:right;margin:0}

@media (max-width:768px){
  #nav-menu-container{display:none}
}

.nav-menu a{
  padding:0 8px 10px 8px;
  text-decoration:none;
  display:inline-block;
  color:#fff;
  font-weight:400;
  text-transform:uppercase;
  font-size:13px;
  outline:none;
}

.nav-menu > li{margin-left:10px}
.nav-menu > li > a:before{
  content:"";
  position:absolute;
  width:100%;
  height:2px;
  bottom:0;
  left:0;
  background-color:#bf9e17;
  visibility:hidden;
  transform:scaleX(0);
  transition:all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,.nav-menu li:hover > a:before,.nav-menu .menu-active > a:before{
  visibility:visible;
  transform:scaleX(1);
}

/* Hero Section */
#hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

#hero picture{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

#hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (min-width:1024px){
  #hero{background-attachment:fixed}
}

#hero .hero-container{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
  padding:0 20px;
}

#hero h1{
  margin:30px 0 10px 0;
  font-size:48px;
  font-weight:700;
  line-height:56px;
  color:#bf9e17;
}

#hero h2{
  color:#bf9e17;
  margin-bottom:50px;
  font-size:24px;
}

@media (max-width:768px){
  #hero h1{font-size:28px;line-height:36px}
  #hero h2{font-size:18px;line-height:24px;margin-bottom:30px}
}

/* Section Headers */
.section-header .section-title{
  font-size:32px;
  color:#bf9e17;
  text-transform:uppercase;
  text-align:center;
  font-weight:700;
  margin-bottom:5px;
}

.section-header .section-description{
  text-align:center;
  padding-bottom:40px;
  color:#999;
}

/* About Section */
#about{
  min-height:100vh;
  background:#fff;
  padding:100px 0 50px 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

#about .container{
  width:100%;
  max-width:1800px;
}

#about .about-container{
  display:flex;
  align-items:flex-start;
  gap:30px;
}

#about .about-container .content{
  background:#fff;
}

#about .about-container .title{
  color:#bf9e17;
  font-weight:700;
  font-size:32px;
  margin-top:0;
}

/* Image column styling */
#about .col-lg-3 img{
  width:60%;
  max-width:250px;
  display:block;
  margin:0 auto;
}

#about .col-lg-3 .linkedin{
  display:block;
  text-align:center;
  margin-top:15px;
}

/* Adjust for medium screens (like 15" laptops) */
@media (min-width:992px) and (max-width:1800px){
  #about .about-container .title{
    font-size:28px;
  }
  
  #about .col-lg-3{
  flex:0 0 20%;
  max-width:20%;
}

#about .col-lg-6{
  flex:0 0 60%;
  max-width:60%;
  padding-right:0;
}

  #about .about-container p{
    font-size:14px;
    line-height:24px;
    margin-bottom:15px;
  }
  
  #about .about-container .icon-box{
    padding:0 0 20px 0;
  }
  
  #about .about-container .icon-box .title{
    font-size:16px;
  }
  
  #about .about-container .icon-box .description{
    font-size:13px;
    line-height:20px;
  }
  
  #about .col-lg-3 img{
    width:80%;
    max-width:200px;
    display:block;
    margin:0 auto;
  }
}

@media (max-width:991px){
  #about{
    min-height:auto;
    padding:120px 0 50px 0;
  }
  
  #about .about-container .title{
    padding-top:15px;
  }

  #about .col-lg-6.content{
  padding-right:0;
  margin-right:10%;
}
  
  #about .col-lg-3 img{
    width:50%;
    max-width:200px;
  }
}

@media (max-width:768px){
  #about .about-container .title{
    padding-top:15px;
  }
  
  #about .col-lg-3 img{
    width:50%;
    max-width:200px;
  }
}

#about .about-container p{line-height:26px}
#about .about-container p:last-child{margin-bottom:0}

#about .about-container .icon-box{
  background:#fff;
  background-size:cover;
  padding:0 0 30px 0;
}

#about .about-container .icon-box .icon{
  float:left;
  background:#fff;
  width:64px;
  height:64px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
  border-radius:50%;
  border:2px solid rgba(31,174,218,0.829);
}

#about .about-container .icon-box .icon i{
  color:rgba(31,174,218,0.829);
  font-size:24px;
}

#about .about-container .icon-box .title{
  margin-left:80px;
  font-weight:500;
  margin-bottom:5px;
  font-size:18px;
  text-transform:uppercase;
}

#about .about-container .icon-box .description{
  margin-left:80px;
  line-height:24px;
  font-size:14px;
}

/* Services Section */
#services{
  min-height:100vh;
  background:#fff;
  padding:100px 0 50px 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

#services .container{
  width:100%;
}

#services .box{
  padding:50px 15px 20px 15px;
  margin-bottom:50px;
  text-align:center;
  border:1px solid #e6e6e6;
  min-height:200px;
  height:100%;
  position:relative;
  background:#fafafa;
  overflow:visible;
  display:flex;
  flex-direction:column;
}

#services .icon{
  position:absolute;
  top:-36px;
  left:calc(50% - 36px);
  transition:0.2s;
  border-radius:50%;
  border:6px solid #fff;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
  width:72px;
  height:72px;
  background:rgba(31,174,218,0.829);
}

#services .icon a{display:inline-block}
#services .icon i{color:#fff;font-size:24px}

#services .box:hover .icon{
  background:#fff;
  border:2px solid rgba(31,174,218,0.829);
}

#services .box:hover .icon i{
  color:rgba(31,174,218,0.829);
}

#services .title{
  font-weight:700;
  font-size:16px;
  margin-bottom:12px;
  text-transform:uppercase;
}

#services .title a{color:#111}

#services .description{
  font-size:13px;
  line-height:22px;
  text-align:left;
  word-wrap:break-word;
  flex-grow:1;
  display:flex;
  flex-direction:column;
}

#services .description ul{
  margin:8px 0;
  padding-left:0;
  list-style-position:inside;
}

#services .description li{
  margin-bottom:6px;
  font-size:13px;
  line-height:22px;
}

/* Contact Section */
#contact{
  min-height:100vh;
  background:#f7f7f7;
  padding:100px 0 50px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

#contact .container{
  width:100%;
}

#contact .info{color:#333333}
#contact .info i{
  font-size:32px;
  color:rgba(31,174,218,0.829);
  float:left;
}

#contact .info p{
  padding:0 0 10px 50px;
  margin-bottom:20px;
  line-height:22px;
  font-size:14px;
}

#contact .social-links a{
  font-size:18px;
  display:inline-block;
  background:#333;
  color:#fff;
  line-height:1;
  padding:8px 0;
  border-radius:50%;
  text-align:center;
  float:left;
  width:36px;
  height:36px;
  transition:0.3s;
}

#contact .social-links p{
  padding:0 0 10px 50px;
  margin-bottom:20px;
  line-height:22px;
  font-size:14px;
  color:#333333;
}

#contact .social-links a:hover{
  background:rgba(31,174,218,0.829);
  color:#fff;
}

#contact .form #sendmessage{
  color:rgba(31,174,218,0.829);
  border:1px solid #bf9e17;
  display:none;
  text-align:center;
  padding:15px;
  font-weight:600;
  margin-bottom:15px;
}

#contact .form #errormessage{
  color:red;
  display:none;
  border:1px solid red;
  text-align:center;
  padding:15px;
  font-weight:600;
  margin-bottom:15px;
}

#contact .form #messageprocessing{
  color:#333333;
  display:none;
  text-align:center;
  padding:15px;
  font-weight:600;
  margin-bottom:15px;
}

#contact .form #sendmessage.show,#contact .form #errormessage.show,#contact .form #messageprocessing.show{
  display:block;
}

#contact .form .validation{
  color:red;
  display:none;
  margin:0 0 20px;
  font-weight:400;
  font-size:13px;
}

#contact .form input,#contact .form textarea{
  border-radius:0;
  box-shadow:none;
  font-size:14px;
}

#contact .form button[type="submit"]{
  background:rgba(31,174,218,0.829);
  border:0;
  padding:10px 24px;
  color:#fff;
  transition:0.4s;
  cursor:pointer;
}

#contact .form button[type="submit"]:hover{
  background:rgba(31,174,218,0.6);
}

.form-group{margin-bottom:1rem}

.form-control{
  display:block;
  width:100%;
  padding:0.375rem 0.75rem;
  font-size:1rem;
  line-height:1.5;
  color:#495057;
  background-color:#fff;
  background-clip:padding-box;
  border:1px solid #ced4da;
  border-radius:0.25rem;
  transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

.form-control:focus{
  color:#495057;
  background-color:#fff;
  border-color:#80bdff;
  outline:0;
  box-shadow:0 0 0 0.2rem rgba(0,123,255,0.25);
}

textarea.form-control{height:auto}

/* Footer */
#footer{
  background:#343b40;
  padding:20px 0;
  color:#fff;
  font-size:14px;
}

#footer .copyright{text-align:center}
#footer .credits{
  padding-top:10px;
  text-align:center;
  font-size:13px;
  color:#ccc;
}

/* Cookie Consent */
#cookieConsent{
  background-color:rgba(20,20,20,0.8);
  min-height:30px;
  font-size:16px;
  color:#ccc;
  line-height:26px;
  padding:8px 0 8px 30px;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  display:none;
  z-index:9999;
}

#cookieConsent a{
  color:rgba(31,174,218,0.829);
  text-decoration:none;
}

#cookieConsent a.cookieConsentOK{
  background-color:rgba(31,174,218,0.829);
  color:#FFF;
  display:inline-block;
  border-radius:5px;
  padding:0 10px;
  cursor:pointer;
  float:right;
  margin:0 10px 0 10px;
}

#cookieConsent a.cookieConsentOK:hover{
  background-color:#E0C91F;
}

/* Font Awesome Icons */
.fa{
  display:inline-block;
  font-style:normal;
  font-variant:normal;
  text-rendering:auto;
  line-height:1;
}

.fa-chevron-up:before{content:"▲"}
.fa-users:before{content:"👥"}
.fa-lock:before{content:"🔒"}
.fa-eye:before{content:"👁"}
.fa-compass:before{content:"🧭"}
.fa-cloud:before{content:"☁"}
.fa-code:before{content:"</>"}
.fa-lightbulb-o:before{content:"💡"}
.fa-search:before{content:"🔍"}
.fa-shield:before{content:"🛡️"}
.fa-map-marker:before{content:"📍"}
.fa-envelope:before{content:"✉"}
.fa-linkedin:before{content:"in";font-weight:bold}

.fa-bars:before{content:"☰"}
.fa-times:before{content:"✕"}

/* Animations */
.wow{
  visibility:visible !important;
  animation-name:fadeInUp;
}

@keyframes fadeInUp{
  from{opacity:0;transform:translate3d(0,40px,0)}
  to{opacity:1;transform:translate3d(0,0,0)}
}

.fadeInRight{animation-name:fadeInRight}

@keyframes fadeInRight{
  from{opacity:0;transform:translate3d(100px,0,0)}
  to{opacity:1;transform:translate3d(0,0,0)}
}

/* Responsive adjustments */
@media (max-width:768px){
  section{
    scroll-snap-align:start;
    min-height:auto;
  }
  
  #about, #services, #contact{
    padding:120px 0 50px 0;
  }
}