@import url('https://fonts.googleapis.com/css2?family=Poppins: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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background-color: #fffef9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 1px !important;
    color: #000020;
    font-family: "Roboto", sans-serif;
}

p {
    margin: 0;
    color: #0b0c10;
    font-family: "Poppins", sans-serif;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

[type="text"],
[type="email"],
[type="tel"],
[type="number"],
[type="search"],
[type="color"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="password"],
[type="time"],
[type="url"],
[type="week"],
textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-style: italic;
    appearance: none;
    --webkit-appearance: none;
    color: #000;
    transition: all .3s linear;
    border: 1px solid #d7d7d7;
    background-color: #fff;
    outline: none;
    resize: none;
    border-radius: 10px;
}

[type="text"]:focus,
[type="email"]:focus,
[type="tel"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="color"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="password"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="week"]:focus,
textarea:focus {
    border-color: #d6ad57;
}

@media(min-width: 1600px) {
    .container {
        max-width: 1140px !important;
    }
}

/* web header */

.web-header-inner .navbar-nav {
    margin-left: auto;
    margin-right: 0 !important;
}

.web-header-inner .nav-item {
    padding: 0 16px;
}

.web-header-inner .nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    padding: 0 !important;
    position: relative;
    padding-bottom: 6px !important;
    transition: all .3s ease-in-out;
}

.web-header-inner .nav-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e0b75f;
    transition: all .3s ease-in-out;
}

.web-header-inner .nav-link:hover {
    color: #e0b75f;
}

.web-header-inner .nav-link:hover::before {
    width: 100%;
}

/* banner sec */

.banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-info h1 {
    font-size: 65px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.banner-info p {
    font-size: 21px;
    margin-bottom: 15px;
}

.primary-btn {
    display: inline-block;
    background: #dfb563;
    color: #000020;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: 0.3s ease;
}

.primary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fbc14f;
    transition: all .3s linear;
    z-index: -1;
}

.primary-btn:hover::after {
    width: 100%;
}

/* about sec */

.about-sec {
    width: 100%;
    background: #fbf3e9;
    padding: 70px 0;
}

.about-inner h2 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-inner p {
    font-size: 18px;
    margin-bottom: 15px;
}

.learn-more-btn {
    display: inline-block;
    font-size: 19px;
    color: #0b0c10;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: underline;
    transition: all .3s ease-in-out;
}

.learn-more-btn:hover {
    color: #dfb563;
}

/* service sec */

.services-sec {
    width: 100%;
    /* background: hsl(213.7deg 97.33% 14.71%); */
    padding: 60px 0;
}

.services-header h2 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 38px;
    text-align: center;
    /* color: #fff; */
}

.service-box {
    width: 100%;
    height: 100%;
    background: #fffef9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dfb563;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all .3s ease-in-out;
}

.service-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.service-img {
    margin-bottom: 25px;
}

.service-box h3 {
    font-size: 24px;
    /* color: #fff; */
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    font-weight: 400;
    /* color: #fff; */
}

/* mission vision sec */

.mission-vision-sec {
    width: 100%;
    background: #fbf3e9;
    padding: 60px 0;
}

.vision-img img {
    height: 76px;
}

.vision-img {
    margin-bottom: 25px;
}

.vision-mision-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.value-box {
    width: 100%;
    text-align: center;
    position: relative;
}

.value-box::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 60%;
    transform: translate(0, -50%);
    background-color: hsl(45deg 42.42% 87.06%);
}

.value-box h3 {
    font-size: 22px;
    /*text-transform: uppercase;*/
}

.value-box-outer:last-child .value-box::before {
    display: none;
}

/* leader sec */

.leader-box {
    width: 100%;
    background: #fffef9;
    border-radius: 14px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #dfb563;
    transition: all .3s ease-in-out;
}

.leader-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.leader-img {
    width: 100%;
    height: 180px;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.leader-info {
    padding: 15px 0;
    text-align: center;
}

.leader-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* web footer sec */

.web-footer {
    width: 100%;
    /*background: hsl(221.61deg 93.94% 12.94%);*/
    background: #000;
}

.web-footer-top-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.web-footer-top-box:first-child {
    width: 356px;
}

.web-footer-top-box:nth-child(2) {
    width: 230px;
}

.web-footer-top-box:last-child {
    width: 380px;
}

.web-footer-top {
    padding: 40px 0;
}

.footer-top-left a img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-top-left p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
}

.social-media-sec {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-media-sec li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.social-media-sec li a:hover {
    background-color: #000020;
    border-color: #e0b75f;
    color: #e0b75f;
}

.footer-heading {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.use-link li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
    transition: all .3s ease-in-out;
}

.use-link li a:hover {
    color: #e0b75f;
}

.address-link li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.address-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-link li p {
    width: 93%;
    padding-left: 15px;
    font-size: 14px;
    color: #fff;
}

.address-link li p a {
    color: #fff;
    transition: all .3s ease-in-out;
}

.address-link li p a:hover {
    color: #e0b75f;
}

.web-footer-bottom {
    width: 100%;
    border-top: 0.5px solid #454242;
    padding: 15px 0;
}

.web-footer-bottom p {
    font-size: 14px;
    text-align: center;
    color: #fff;
    font-weight: 300;
}

.mision-outer-box {
    margin-bottom: 50px;
}

.web-header {
    width: 100%;
    background: #f6e6cc;
}

.banner-sec {
    width: 100%;
    background: #f6e6cc;
}

.footer-top-box {
    text-align: center;
}

.footer-top-box a {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-top-box a img {
    height: 75px;
}

.social-media-sec {
    justify-content: center;
}

.web-footer-top {
    padding: 40px 0 0 0;
}

.banner-sec {
    padding-bottom: 30px;
}

/* logo container - move to top */
.sidebar-logo-wrap{
  padding: 10px 12px 6px !important;  /* top space very small */
  margin: 0 !important;
  text-align: left;                   /* like your screenshot */
}

/* logo image - small */
.sidebar-logo{
  width: 125px;       /* make small (try 110-140) */
  max-width: 125px;
  height: auto;
  display: block;
}

/* remove extra gap if theme gives */
.sidebar-logo-link{
  display: inline-block;
  line-height: 1;
}


.contact-left h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-list {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-list-icon {
    width: 60px;
    height: 60px;
    background: #d6ad57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.contact-list-info {
    width: 91%;
    padding-left: 16px;
}

.contact-list-info h5 {
    font-size: 17px;
    margin-bottom: 5px;
}

.contact-list-info p {
    font-size: 13px;
}

.contact-list-info p a {
    font-size: 13px;
    color: #000;
}

.contact-right h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-input-box {
    margin-bottom: 15px;
}

.contact-form-box {
    width: 90%;
}

.message-btn {
    width: 100%;
    display: inline-block;
    background: #d6ad57;
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 2px solid #d6ad57;
    text-decoration: none !important;
    transition: .2s ease;
    line-height: 1;
}

.contact-sec {
    padding-bottom: 60px;
}














