* {
    margin: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgba(177,181,186,255);
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

p {
    color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fffbf4;
    font-family: 'Nunito', sans-serif;
}

.header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1320px;
}

.header-elements div,
.header-elements nav {
    flex: 1 1 50%;
    max-width: 1320px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 15px 30px; */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
    background: transparent;
}

.header.scrolled {
    background: #7a90a6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    width: 200px;
    height: 200px;
    transition: width 0.3s ease, height 0.3s ease;
}

/* .navmenu{
    border: 2px black solid;
} */
.navitems {

    display: flex;
    align-items: center;
    list-style: none;

}

.navitems li a {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease;
}

.navitems li a:hover {
    color: #11120d;
}

.emp-btn:hover {
    background: #263440 !important;
    color: #fffbf4 !important;
}

.navitems li {
    padding: 18px 12px;
}

a {
    text-decoration: none;
}

.navitems li .emp-btn {
    padding: 10px 25px !important;
    color: #ffffff;
    background: #3a5474;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1.2;
    /* keeps text vertically centered */
    display: inline-block;
}

.navitems li:last-child {
    padding: 0;
    /* removes extra li padding around the button */
}






.btn {
    background: #3a5474;
    color: #fffbf4;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}

.btn2 {
    padding: 8px 16px;
    border-radius: 4px;
}

section {
    padding: 60px 0px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #11120d;
    /* blue */
    position: relative;
    display: inline-block;
    text-align: center;
    /* margin: 0 auto 30px; */
    padding-bottom: 20px;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
    background: #d8cfbc;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #11120d;
}

/* ------------------ Hero section--------------- */
.hero {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0px 60px;
    position: relative;
    align-items: center;
    background-image: url(images/hero-bg.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.container-items {
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 auto; */
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.hero_content1 {
    flex: 1 1 50%;
    width: 50%;
    padding: 0px 12px;
}

.hero_content1 h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;

}

.hero_content1 p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0px 30px;
}

.btn-get-started {
    background: #4154f1;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    transition: 0.5s;
    letter-spacing: 1px;
}

.btn-get-started i {
    display: inline-block;
    transition: 0.5s ease;
}

.btn-get-started:hover i {
    transform: translateX(6px);
}

.btn-get-started:hover {
    background: #6674ff;
    color: #4154f1;
}

.hero_content2 {
    padding: 0px 12px;
    flex: 1 1 50%;
    width: 50%;
    text-align: right;
}

@keyframes example {
    from {
        transform: translateY(10px);
    }

    to {
        transform: translateY(-12px);
    }

}

#herologo {
    animation: 2s ease-in-out infinite alternate-reverse example;
    max-width: 100%;
    height: auto;
}

/* ----------------About section-------------- */
#about {
    display: flex;
    justify-content: center;
}

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.aboutlogo {
    flex: 0 0 auto;
    max-width: 50%;
}

.aboutlogo img {
    max-width: 100%;
    height: auto;
}

.about-info {
    flex: 0 0 auto;
    max-width: 50%;
    background-color: #7a90a6;
    padding: 40px;
}

.about-info h3,
h2 {
    margin-bottom: 8px;
}

.about-info h3 {
    font-size: 14px;
    color: #11120d;
}
.about-info h2{
    color: #11120d;
}

.about-info p {
    line-height: 24px;
    margin: 15px 0px 30px 0px;
    color: #fffbf4;
}

.btn3 {
    box-shadow: black 1px 1px 1px;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
}

.btn3 i {
    transition: 0.3s ease;
}

.btn3:hover i {
    transform: translateX(5px);
}

/* ----------------Values & features section---------------- */
.valueinfo {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1320px;
    padding-bottom: 60px;
}


.valueinfo p {
    color: #11120d;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-top: 10px;
}
.container2 .cards .card h3{
    color: #11120d;
}
.container2 .cards .card p{
    color: #565449;
}

.features-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1320px;
    padding: 0px 12px 60px;
}

.features-info p {
    color: #012970;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-top: 10px;
}

.card img:hover {
    transform: scale(0.9);

}

.cards {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 20px;

}

.card img {
    width: 391px;
    padding: 30px 50px;

    transition: 0.5s ease-in-out;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
}

.card p {
    margin: 0px 0px 16px;
}

.card {
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.3);
    flex: 1 1 300px;
    max-width: 415px;
    /* height: 440px; */

}

.container2 {
    display: flex;
    justify-content: center;

}

/*-----------------Careers section------------  */
#careers {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1320px;
}

#careers p {
    color: #012970;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-top: 10px;
}

/* --------------services section---------------- */
.icons {
    max-width: 76px;
    padding: 20px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    box-sizing: border-box;
    transition: 0.5s;
}

.icons img {
    width: 36px;
    height: auto;

}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
}

.services-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1320px;
    padding-bottom: 60px;
}

.service-card {
    flex: 1 1 415px;
    max-width: 415px;
    height: auto;
    display: flex;
    background-color: #ffffff;
    flex-direction: column;
    padding: 60px 30px;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    align-items: center;
    text-align: center;
    transition: 0.5s;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #11120d;
}

.services-info p {
    color: #565449;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-top: 10px;
}

.service-card:nth-child(1):hover {
    background-color: #0dcaf0;
    color: #11120d;
}

.service-card:nth-child(2):hover {
    background-color: #fd7e14;
    color: #ffff;
}

.service-card:nth-child(3):hover {
    background-color: #20c997;
    color: #ffff;
}

.service-card:nth-child(4):hover {
    background-color: #df1504;
    color: #ffff;
}

.service-card:nth-child(5):hover {
    background-color: #6610f2;
    color: #11120d;
}

.service-card:nth-child(6):hover {
    background-color: #f3268c;
    color: #ffff;
}

.service-card:hover .icons {
    background-color: #ffff !important;
}

/* -----------------contact section------------- */
#contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

.contact-info {
    /* flex: 1 1 100%; */
    max-width: 100%;
    text-align: center;
}

.contact-info p {
    color: #012970;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    margin-top: 10px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-item-1 {
    flex: 1 1 calc(50% -20px);
    max-width: calc(50% -20px);

}

.contact-item-2 {
    flex: 1 1 calc(50% -20px);
    max-width: calc(50% -20px);

}

.contact-child1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 660px;

}

.contact-child1-items h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #11120d;
}

.contact-child1-items p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 14px;
    padding: 0px;
}

.contact-child1-items {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% -20px);
    /* value 306px*/

    height: auto;
    background-color: #ffffff;
    padding: 30px;
}

.contact-child1-items img {
    width: 38px;
    height: 38px;
}

/*----------- start of the form---------*/
form {
    background-color: #ffffff;
    padding: 18px;
    max-width: 636px;
    /*value 636px */
    display: flex;
    height: 100%;
    flex-direction: column;
    /* justify-content: center; */
}

.contact-child2 {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
}

.form input:focus,
.form textarea:focus {
    border-color: #11120d;
    outline: none;
}

.form input {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #444444;
    background-color: #ffffff80;
    border-color: #7a90a6;
}

.form-action {
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-weight: 400;
    box-shadow: none;
    border: 1px solid #dee2e6;
    transition: 0.15s ease-in-out;
}

.con-for,
.form-submit {
    max-width: 100%;
    padding: 0px 12px 0px;
    margin-top: 24px;
}

.contact-child2 div:nth-child(1),
.contact-child2 div:nth-child(2) {
    flex: 1 1 50%;
    max-width: 50%;
}

.contact-child2 div:nth-child(3) {
    flex: 1 1 100%;
    max-width: 100%;
}

.contact-child2 div:nth-child(4) {
    flex: 1 1 100%;
    max-width: 100%;
}

.contact-child2 textarea {
    min-height: 150px;
}

.form-submit {
    flex: 1 1 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
    /* margin-top: 20px; */
}

button {
    width: auto;
    text-align: center;
    color: #fffbf4;
    font-size: 16px;
    font-weight: 500;
    background: #3a5474;
    padding: 10px 30px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover,
.btn1:hover {
    background: #263440;
    color: #fffbf4;
}

.map {
    flex: 1 1 calc(100% - 20px);
    max-width: 1320px;
}


/*----------Footer section---------------- */
#footer {
    padding-bottom: 50px;
    background:#263440;
}

.footer {
    display: flex;
    justify-content: center;
}

.footer-main {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 30px; */
    width: 1308px;

}

.footer ul {
    text-decoration: none;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.d-flex {
    display: flex;
}

.align-items {
    align-items: center;
}

.sitename {
    font-size: 24px;
    font-weight: 600;
    color: #fafaff;
}

.fp-1 {
    margin-top: 1rem;
}

.col-1 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 12px;
    margin-bottom: 8px;
    color: #fafaff;
}

.footer-about p {
    margin-bottom: 5px;
}

.footer-about-items {
    padding-top: 16px;
}

.footer-about-items p {
    font-size: 14px;
    color: #c0c3c9;
}

.footer-links ul li {
    font-size: 14px;
}

.footer-links ul li {
    padding: 10px 0px;
    display: flex;
    align-items: center;
}

.footer-links ul li:first-child {
    padding-top: 0px;
}

.footer-links img {
    width: 12px;
    height: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #ecebe4;
    transition: 0.2s ease-in;

}

.footer-links a:hover {
    color: #7a90a6;
    text-decoration: underline;
}

.footer-follow p {
    margin-bottom: 1rem;
    font-size: 14px;
    color: #c0c3c9;
}

.footer .social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    color: #11120d;
    background: #d8cfbc;
    border: 1px solid #4154f126;
    font-size: 16px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.social-links {
    display: flex;
    gap: 10px;
    /* justify-content: center; */
}

.social-links a:hover {
    background: #11120d;
    color: #fffbf4;

}

.copy-right {
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #4444441a;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
}
.copy-right p{
    color: #c0c3c9;
}

.scroll-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    opacity: 0;
    width: 40px;
    height: 40px;
    background: #565449;
    color: #fffbf4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 99999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #11120d;
    color: #fffbf4;
}





/* @media (max-width: 768px) {

    .cards,
    .services,
    .contact-parent {
        flex-direction: column;
        justify-content: center;
    }

    header {
        flex-direction: column;
    }
} */
/* ====== Burger Styles ====== */
/* ====== Burger Styles ====== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Animate burger into "X" when active */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== Mobile Nav ====== */
@media (max-width: 991px) {
  .burger {
    display: flex;
  }

  .navmenu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #263440;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .navmenu.active {
    right: 0;
  }

  .navitems {
    flex-direction: column;
    gap: 20px;
  }

  .navitems li {
    padding: 0;
  }

  .navitems li a {
    font-size: 18px;
  }
}



/* header */
/* @media (max-width: 1199px){
    *{
        /* padding: 0px !important; */
        /* margin: 0px;
    }
    body{
        width: 100%;
    }
    .header-elements{
        display: flex;
    }
    .hero{
        display: flex;
        justify-content: center;
        align-items: center;
        background: none;
    }
    .container-items{
        display: flex;
        flex-direction: column-reverse;
    }
    .hero_content2{
        width: 388px;
        height: auto;
    }
} */ 

/* ================================
   MOBILE RESPONSIVE STYLES
   ================================ */
/* ================================
   GLOBAL RESET
   ================================ */
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Keep your original styles above... */

/* ================================
   RESPONSIVE NAVIGATION
   ================================ */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Tablet & Mobile ===== */
@media (max-width: 1199px) {
  .burger {
    display: flex;
  }

  .navmenu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #263440;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .navmenu.active {
    right: 0;
  }

  .navitems {
    flex-direction: column;
    gap: 20px;
  }

  .navitems li {
    padding: 0;
  }

  .navitems li a {
    font-size: 18px;
  }

  /* Hero stacks */
  .container-items {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero_content1, 
  .hero_content2 {
    width: 100%;
  }
  .hero_content2 img {
    max-width: 80%;
    height: auto;
  }

  /* About */
  .media{
    display: flex;
    justify-content: center;
  }
  .container1 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .aboutlogo, .about-info {
    max-width: 100%;
  }

  /* Cards and Services */
  .cards, 
  .services {
    flex-direction: column;
    align-items: center;
  }
  .card, 
  .service-card {
    max-width: 100%;
    width: 100%;
  }

  /* Contact */
  .contact-child1,
  .contact-child2 {
    flex-direction: column;
    width: 100%;
  }
  .contact-item-1,
  .contact-item-2 {
    max-width: 100%;
  }
  .contact-child1-items {
    max-width: 100%;
  }
  .contact-child2{
    display: flex;
    flex-direction: row;
  }

  /* Footer */
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .col-1, .col-2 {
    max-width: 100%;
  }
  .social-links {
    justify-content: center;
  }
}

/* ===== Small Phones ===== */
@media (max-width: 600px) {
  .hero_content1 h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero_content1 p {
    font-size: 14px;
  }
  .btn-get-started {
    padding: 10px 20px;
    font-size: 14px;
  }
}

  
/* Footer */
@media (max-width: 1199px) {
    #footer{
        background: #263440;
        width: 100%;
    }
  .footer-main {
    display: flex;
    flex-direction: row;
    /* text-align: center; */
    align-items: center;
    justify-content: flex-start;
    margin-left: 20px;
  }

  .col-1,
  .col-2 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }
}








/* @media (max-width: 992px) {
  -----Navbar---
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .navmenu ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  ---Hero---
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }

@media (max-width: 768px) {
  About Section
  .container1 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .about-img img {
    max-width: 80%;
    margin: 0 auto;
  }

  Services Section
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .card img {
    width: 100%;
  }

  Contact Form
  .form input,
  .form textarea,
  .form button {
    width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  Hero
  .hero {
    padding: 100px 20px;
  }
  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .hero p {
    font-size: 14px;
  }

  Navbar
  .navbar h2 {
    font-size: 20px;
  }

  Footer
  .footer .container2 {
    flex-direction: column;
    text-align: center;
  }
} */