@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&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&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --main-color: #003c8b;
    --sub-color: #c71424;
    --paragraph: #666666;

}

* {
    font-family: "Hind", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none !important;
}

/* *::selection{
    color: var(--bgcolor);
} */
*::-webkit-scrollbar {
    height: .5rem;
    width: 1rem;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #000f2a;
    /* border-radius: 5rem; */
}

html {
    font-size: 15px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

ul,
li {
    list-style: none;
    padding: 0;
}

a {
    color: #000;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.text-justify {
    text-align: justify !important;
}

p {
    font-family: "Poppins", serif;
}

.transition {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}



.page-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 515px;
    background: var(--white);
    /* overflow-x: hidden; */
}

.main-head {
    font-family: "Hind", serif;
    font-size: 40px;
    font-weight: 700;
}

.sub-head {
    font-family: "Hind", serif;
    font-size: 18px;
    font-weight: 400;
}

.sub-title {
    font-family: "Hind", serif;
    color: var(--paragraph);
    font-size: 15px;
}

.main-btn {
    display: inline-block;
    font-family: "Hind", serif;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--sub-color);
    color: #fff;
    background-color: var(--sub-color);
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.main-btn:hover {
    letter-spacing: 2px;
    background-color: var(--main-color);
}

.main-btn-two {
    display: inline-block;
    font-family: "Hind", serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
    background-color: #fff;
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.main-btn-two:hover {
    letter-spacing: 2px;
    background-color: var(--sub-color);
    color: #fff;
}



header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--white);
}

.darkHeader {
    top: -50px;
}

.nav-up {
    top: -235px;
}

.header-social {
    font-size: 14px;
    text-transform: capitalize;
    margin-top: 1rem;
    margin-bottom: -10px;
}

.header-social li {
    border-right: 1px solid #6666;
    padding: 0 1rem;
}

.header-social li:last-child {
    border: none;
    padding-right: 0;
}

.header-social i {
    font-size: 16px;
}

.header-contact a {
    font-size: 15px;
    font-weight: 300;
    color: #333333;
}

header nav button,
header nav button:active,
header nav button:focus {
    border: 0 !important;
}

header nav i {
    color: #fff;
    padding: 1rem;
}

.navbar {
    background-color: var(--main-color);
    color: #fff;
}

.navbar .container {
    flex-wrap: wrap !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link {
    color: #ffff;
    font-family: "Poppins", serif;
}

.nav-link {
    font-family: "Poppins", serif;
    margin-right: 1rem;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-abtn a {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--sub-color);
    font-weight: 600;
    font-size: 16px;
    font-family: "Poppins", serif;
    color: #fff;
}

.nav-abtn a i {
    padding: 0 3px 0 0;
}

.nav-abtn a:first-child {
    margin-right: 5px;
}

.dropdown-menu {
    background-color: #ffff;
    border-radius: 0;
    border: none;
    margin-top: 0.5rem !important;
    margin-left: 0.5rem;
    padding: 0;
}

.dropdown-menu li {
    padding: 0;
    background-color: var(--main-color);
}

.dropdown-menu a {
    padding: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.dropdown-menu a:hover {
    background-color: var(--sub-color);
    color: #fff;
}

header .ios-img {
    width: 100%;
    max-width: 300px;
    padding: 0 2rem;
}

header .heder-logo {
    max-width: 300px;
    width: 100%;
}






.slider-area {
    background-image: url(../assets/img/slider/slider-1.jpg);
    background-size: cover;
    background-position: left center;
    min-height: 60vh;
    color: #fff;
    overflow: hidden;
    padding-top: 202px;
}

.slider-content {
    margin-top: 10rem;
}

.slider-content h1 {
    font-size: 40px;
    font-weight: 600;
}

.slider-content P {
    font-family: "Hind", serif;
    font-size: 16px;
    font-weight: 300;
    color: #cce1fe;
    max-width: 550px;
}

.slider-content a {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--sub-color);
    color: #fff;
    padding: 0.8rem 2.3rem;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 1rem 0;
}

.slider-content a:hover {
    letter-spacing: 2px;
}

.slider-img {
    display: flex;
    justify-content: end;
}

.slider-img figure {
    margin-top: .2rem;
    margin-bottom: -5px;
    width: 385px;
}



/* ------ home about start ------- */

.about-area {
    padding: 8rem 0;
}

.about-area .sub-head {
    color: var(--paragraph);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
}

.about-area .sub-head::after {
    content: "";
    position: absolute;
    top: 13px;
    right: -50px;
    width: 40px;
    height: 2px;
    background-color: var(--sub-color);
}

.about-area .sub-head-two {
    font-family: "Hind", serif;
    font-size: 20px;
    font-weight: 500;
}

.about-area .ts-listing {
    margin-left: 1.8rem;
}

.about-list {
    margin-top: 3rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-list h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0.2rem;
}

.about-list span {
    color: var(--paragraph);
}

.about-img img {
    padding-left: 2rem;
    max-width: 487px;
    width: 100%;
}

.about-img .popup-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: transparent;
    max-width: 178px;
}





/* popup start */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* popup end */


/* ------ home about end ------- */




/* ------ home service start ------- */

.services_area {
    background: #002467;
}

.services_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.services_area .content-box {
    padding-top: 5rem;
    max-width: 500px;
    margin-left: 2.5rem;
}

.services_area .bg-sub-img {
    position: absolute;
    top: 0;
    left: 0;
}

.services_area .main-head {
    color: #fff;
}

.services_area .sub-title {
    color: #bad8ff;
    margin-bottom: 2rem;
}

.services_area ul {
    margin-left: 1.8rem;
}

.services_area li {
    color: #bad8ff;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.services_area li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: -25px;
    width: 7px;
    height: 7px;
    background-color: var(--sub-color);
}

.services_area li i {
    font-size: 8px;
    color: var(--sub-color);
}

.services_area .main-btn {
    margin-bottom: 5rem;
    margin-left: 1.4rem;
}


/* ------ home service end ------- */





/* ------ home clients start ------- */

.clients_area {
    padding: 5rem 0;
}

.clients_area .sub-head {
    color: var(--paragraph);
    margin-bottom: 3rem;
    display: block;
    font-size: 15px;
}



.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 5rem !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c5c5c5;
    padding: 1rem;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 20px !important;
    border-radius: 0px !important;
    background-color: #a6a6a6 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--sub-color) !important;
}


/* ------ home clients end ------- */




/* ------ footer start ------- */

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    padding-top: 5rem;
    background-color: #000f2a;
    color: #d7ecfe;
}

footer .footer-flex-box p {
    max-width: 492px;
    font-size: 15px;
    font-weight: 300;
    font-family: "Hind", serif;
}

footer img {
    margin-bottom: 2rem;
}

footer .social {
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

footer .social a {
    color: #fff;
    font-size: 20px;
}

footer a:hover {
    color: var(--sub-color) !important;
}

footer h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

footer h3::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -80px;
    width: 60px;
    height: 2px;
    background-color: var(--sub-color);

}

footer ol a,
footer .footer-contact a {
    color: #d7ecfe;
}

footer ol {
    margin-top: 2rem;
}

footer ol a {
    font-weight: 300;
    font-size: 15px;
    text-transform: capitalize;
}

footer ol li {
    margin-bottom: 1rem;
    position: relative;
}

footer ol li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: -25px;
    width: 7px;
    height: 7px;
    background-color: var(--sub-color);
}

.footer-contact span {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact li img {
    width: 30px;
    height: 100%;
    margin-bottom: 0;
}

.copyright {
    margin-top: 2rem;
}

.copyright,
.copyright a {
    background: #000714;
    color: #7f7f7f;
}

.copyright p {
    font-family: "Hind", serif;
    margin: 0;
    padding: 2rem 0;

}

.footer-flex-box {
    display: grid;
    grid-template-columns: 50% 24% 26%;
}

.footer-flex-box .footer-box:nth-child(2) {
    padding-left: 1rem;
}







/* ------ footer end ------- */






/* ------ inner start ------- */


.inner-header {
    background-position: center;
    background-size: cover;
    padding-bottom: 3rem;
    min-height: 440px;
    display: flex;
    align-items: end;
    color: #fff;
}

.page-name {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.breadcrumbs a {
    color: #fff;
}

.breadcrumbs a:hover {
    color: var(--sub-color);
}

.breadcrumbs i {
    color: var(--sub-color);
    font-size: 30px;
    line-height: 0;
    font-weight: 400;
}

.ts-listing li {
    margin-bottom: 1rem;
    position: relative;
}

.ts-listing li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: -25px;
    width: 7px;
    height: 7px;
    background-color: var(--sub-color);
}



/* ------ inner end ------- */






/* ------ about service start ------- */


.about-vm {
    padding: 7rem 0;
    background-color: #deecff;
}

.about-vm .box {
    padding: 3rem;
}

.about-ser-list {
    padding: 7rem 0;
}

.about-ser-list .ts-listing {
    margin-left: 2rem;
}



/* ------ about service end ------- */








/* ------ services start ------- */


.ser-inner .ts-listing {
    margin-left: 2rem;
    /* margin-top: 3rem; */
}

.ser-inner {
    padding-bottom: 2rem;
}

.semi-head {
    margin-top: 2rem;
    font-size: 20px;
    font-weight: 600;
}

.ser-content {
    padding-bottom: 5rem;
}

.ser-content .sub-heading {
    font-size: 30px;
}

.ser-content .ts-listing {
    margin-left: 2rem;
}

.ser-content .sub-title {
    margin-bottom: 0.5rem;
}

/* ------ services end ------- */









/* ------ clients start ------- */


.clients-list {
    padding: 8rem 0;
}

.clients-wrap {
    border-top: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
}

.clients-list .box {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
}

.clients-list .box img {
    width: 100%;
}



/* ------ clients end ------- */









/* ------ contact start ------- */



.contact-page {
    padding: 8rem 0;
}

.social {
    align-items: center;
    gap: 1rem;
}

.contact-page h5 {
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-page p {
    font-size: 18px;
    margin-top: 1rem;
}

.contact-list {
    margin-bottom: 2rem;
}

.contact-list a {
    font-size: 18px;
}

.contact-page i {
    margin-right: 0.5rem;
}

.contact-list li {
    margin-bottom: 1rem;
}

.contact-page .social a {
    font-size: 18px;
}



/* ------ contact end ------- */

.highlights {
    padding-bottom: 0;
}

.iso-sec {
    padding: 7rem 0;
}

.iso-sec .cover-img {
    border: 1px solid #d7d7d7ee;
    padding: 10px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    margin-top: 1.5rem;
}


/* Popup Overlay */
.iso-sec .popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.iso-sec .popup.open {
    display: flex;
}

/* Popup content box */
.iso-sec .popup-content {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 0, 0, .4);
}

.iso-sec .popup-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

/* Close button */
.iso-sec .close-btn {
    position: absolute;
    top: -14px;
    right: -14px;
    background: var(--main-color);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}



.in-contact {
    padding: 3rem 0;
}

.in-contact h3 {
    font-family: "Hind", serif;
    font-size: 30px;
    font-weight: 600;
}

.in-contact p {
    font-size: 16px;
    font-family: "Hind", serif;
    color: var(--paragraph);
}

.shape-line {
    display: block;
    /* margin: 0 auto; */
    width: 40%;
    height: 2px;
    background-color: var(--sub-color);
}

.gp-company {
    margin: 5rem 0;
}

.gp-company h4 {
    font-family: "Hind", serif;
    font-size: 30px;
    font-weight: 600;
}

.gp-company .gp-company-img {
    border: 1px solid #cacaca99;
    padding: 1rem;
    border-radius: 10px;
}

.gp-company img {
    width: 100%;
}

.gp-company .sub-title a {
    color: #003c8b;
}


.scr-fixing {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
}

.content {
    flex: 3;
}

.scroll-fix {
    flex: 1;
    position: sticky;
    top: 20%;
}


/* Overlay */
  .popup-overlay-home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* Popup box */
  .popup-home {
    position: relative;
    background: #fff;
    max-width: 540px;
    width: 90%;
    padding: 45px 40px 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.4s ease;
  }

  /* Top-right close (X) */
  .close-x {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    color: #888;
  }

  .close-x:hover {
    color: #000;
  }

  .popup-home h2 {
    margin-top: 5px;
    color: #333;
    font-family: "Hind", serif;
    font-size: 30px;
    font-weight: 700;
  }

  .popup-home p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }

  .address-home {
    margin: 15px 0;
    font-size: 18px;
    color: #222;
    font-weight: bold;
  }

  /* Buttons */
  .popup-buttons-home {
    margin: 20px auto;
    display: flex;
    gap: 10px;
  }

  .btn-home {
  width:auto;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
	margin:0 auto;
  }

  .btn-close {
    background: #ccc;
  }

  .btn-map {
    background: #007bff;
    color: #fff;
  }

  .btn-home:hover {
    opacity: 0.9;
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
  }