/* HEADER */

.logo img {
    width: 150px;
}

.hdrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.headersection {
    position: absolute;
    width: 100%;
    z-index: 22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navmenu .menu {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.navmenu .menu li {
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.navmenu .menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 20px;
    display: inline-block;
}

.navmenu .menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00b773;
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
}

.navmenu .menu li:hover::after {
    width: 100%;
}

/* Mobile Menu  */
.mobilemenu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

header.stick {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 22;
}

.headersection {
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.headersection.sticky {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.headersection.sticky .navmenu .menu li a {
    color: #333;
}

.headersection.sticky .navmenu .menu li::after {
    background: #00b773;
}

.mobilemenu span {
    height: 2px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.mobilemenu.scrolled span {
    background-color: #18004C;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 99;

}

.dropdown-content li {
    display: block;
}

.dropdown-content li a {
    padding: 12px 15px;
    display: block;
    color: #000 !important;
    font-size: 15px;
}

.dropdown-content li a:hover {
    background-color: #f0f0f0;
    color: #000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.overflow-hidden {
    overflow: hidden;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}






/* HEROSECTION */

.herocontent {
    max-width: 600px;
    position: relative;
    z-index: 2;
}




.herosection {
    background-image: url(../asset/images/heroimg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: left;
    text-align: left;
    overflow: hidden;
}

.herobutton a {
    background-color: #fff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 15px 30px;
    width: fit-content;
    display: block;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.herobutton a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.herosection::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2b536b;
    z-index: 1;
}

.herocontent h1 {
    color: #fff;
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.herocontent p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 100%;
    margin-bottom: 40px;
}

/* FEATURES */
.features {
    padding-top: 60px;

}

.featureslist {
    display: flex;
    gap: 20px;
}

.featurebox {
    background-color: #EDF5FF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

}

.ftimg img {
    height: 64px;
    width: 64px;
}

.fet-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.fet-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ABOUTSECTION */
.aboutimg {
    margin-bottom: 15px;
}

.aboutsection {
    padding-top: 80px;
    padding-bottom: 80px;
}

.aboutsection .col-6 {
    padding-right: 10px;
    padding-left: 10px;
}



.experiencebox {
    background-color: #F8F8F8;
    color: #18004C;
    text-align: center;
    padding: 20px;
    display: inline-block;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.experiencebox h2 {
    font-size: 40px;
    margin: 0;
}

.experiencebox p {
    font-size: 16px;
    margin: 5px 0 0;
}

.aboutcontent span {
    color: #18004C;

}

.aboutcontent h2 {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}


.missionbox {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 15px;
    border-left: 4px solid #b22222;
    margin-bottom: 20px;
    margin-top: 20px;
}

.missiontext {
    font-size: 16px;
    color: #333;
}

.download-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b22222;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;

}

.download-container img {
    width: 24px;
    height: 24px;
}

/* SERVICESECTION */
.servicesection {
    padding-top: 40px;
    padding-bottom: 80px;
}

.servdes {
    margin-top: 20px;
}

.service-container {
    display: flex;
    gap: 20px;
    height: 400px;
    padding: 20px;
    margin-top: 40px;
}

.service-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    transition: flex 0.5s ease;
}

/* Expands the hovered item */
.service-item:hover {
    flex: 2;
}

/* Image */
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Effect */
.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Default light overlay */
    transition: background 0.5s ease;
    z-index: 1;
}

/* Darken overlay on hover */
.service-item:hover::before {
    background: rgba(0, 0, 0, 0.7);
}

/* Service Content (Hidden by Default) */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.portfolio-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}


/* Show Content on Hover */
.service-item:hover .hidecontent {
    opacity: 1;
}

/* Service Title */
.service-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Plus Button */
.hidecontent a {
    display: inline-block;
    font-size: 24px;
    background: white;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover effect for button */
.plus-button:hover {
    transform: scale(1.2);
    background: #ddd;
}

.hidecontent {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
}

/* WHYCHOOSE US */

.whyusesction {
    padding-top: 80px;
    padding-bottom: 80px;

}



.coulum {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.tick img {
    height: auto;
    width: 22px;
}

.coulum p {
    margin: 0;
    flex: 1;
    font-size: 16px;
}

.tick {
    background-color: #B0EF8F;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industriessection {
    background-color: #111827;
    color: white;
    padding: 50px;
    max-width: 800px;
    margin-top: -100px;
    position: relative;


}

.industriessection h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.industries-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}

.industry img {
    height: 44px;
    width: 44px;
    display: block;
    margin: auto;
    margin-bottom: 10px;

}

.industry p {
    margin-bottom: 20px;
}

*/
/* CTASEC */

.ctasection {
    padding-top: 160px;
    padding-bottom: 80px;

}

.ctacontent h5 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.ctacontent p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.ctabutton {
    display: flex;

    align-items: center;
    width: 100%;
}

.Contactbutton a {
    display: block;
    background-color: #111827;
    color: #fff;
    padding: 15px 30px;
    width: fit-content;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
}

.wpbutton a {
    display: flex;
    align-items: center;
    background-color: #27AE60;
    color: #fff;
    padding: 15px 30px;
    width: fit-content;
    border-radius: 6px;
    cursor: pointer;
    gap: 10px;
}

.detailslink img {
    width: 24px;
    height: 24px;
}

.detailslink {
    margin-left: 10px;
    font-size: 20px;
}

/* FOOTER */

.footersection {
    background-color: var(--secondary-color);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 16px;
}


/* 
.footersection .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.footersection .col-md-6 {
    margin-bottom: 20px;
}

.footerlogo img {
    max-width: 150px;

}

.footerdes p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social-icons li {
    list-style: none;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social-icons a:hover {
    background: #2563eb;
}

.footerhead {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    margin-top: 10px;
}

.navlinks {
    list-style: none;
    padding: 0;
}

.navlinks li {
    margin-bottom: 10px;
}

.navlinks a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    font-size: 14px;
}


.contact a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin-top: 10px;
    transition: 0.3s;
    font-size: 14px;
}



.ftline {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #374151;
    margin: 20px 0;
}

.copyright {
  
    font-size: 14px;
    color: #9ca3af;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}



/* ABOUTPAGE */


.aboutherosection {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 300px;
}

.abt-herocontent {
    position: relative;
    z-index: 2;
}

.abt-herocontent h1 {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.abt-crumb {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 16px;
    color: #666;
    align-items: center;
    justify-content: center;
}

.crumb li {
    display: inline;
}

.crumb a {
    text-decoration: none;
    color: #666;
}

.crumb li:not(:last-child)::after {
    content: " / ";
    color: #666;
}

.abt-img {
    border-radius: 15px
}

/*  */
.abt-aboutsection {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mission-vision-values {
    padding-top: 80px;
    padding-bottom: 80px;
}

.purpose-box {
    background: #f3f3f3;
    padding: 29px 44px;
    border: 1px solid #6060601c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.aboutcontent p {
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.purposeicon img {
    width: 84px;
    height: 84px;
    margin-bottom: 10px;
}

.purposecontent h3 {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    font-size: 28px;
    color: #000;
    font-weight: 500;



}

.purposecontent p {
    margin-bottom: 10px;
    color: #8B8B8B;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.section-header p {
    margin-bottom: 10px;
    color: #8B8B8B;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}





/* CONTACT PAGE */

.detail-contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.info-box {
    background: #fff;
    padding: 20px;
    height: 200px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

}

.contact-icon i {
    width: 50px;
    height: 50px;
    background: #E0F2FE;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    color: #111827;

}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box a {
    display: block;
    margin-bottom: 8px;
    color: #000;
    align-items: center;
}

.info-section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.contact-info {
    display: flex;
    align-items: center;
}

.info-box:hover {
    background-color: #E0F2FE;
}

.info-box:hover .contact-icon i {
    background-color: #18004C;
    color: #fff;
}

/*  */
.detail-box {
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.detail-title {
    text-align: center;
}

.detail-title p {
    font-size: 16px;
    color: #717171;
    font-weight: 600;
}

.contactcard {
    background: #111827;
    color: white;
    padding: 30px;
    border-radius: 10px;
    height: 400px;
}

.contactcard h4 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.contactcard p {
    color: #C9C9C9;
    font-size: 14px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cntct-icon {
    margin-right: 10px;
}

.cntct-icon i {
    color: #fff;
    font-size: 20px;
}

.contactdetail a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 15px !important;
}

.contactdetail p {
    margin: 0;
    display: block;
    font-size: 15px !important;
    color: #fff;
}

.contact-form {
    padding: 30px;
}

.form-control {
    border-radius: 5px;
}

.form-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.form-button button {
    background: #111827;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-button button:hover {
    background: #333a47;
}

/* form */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #111827;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

.contact-form .row {
    margin-bottom: 15px;
}

.contact-form button {
    background: #111827;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #333a47;
}

.lettersend img {
    width: 240px;
    height: 112px;
    position: absolute;
    bottom: -21px;
    right: 66px;
}


/* SERVICEPAGE */
.Services-detail {
    padding-top: 80px;
    padding-bottom: 80px;
}

.sc-content h4 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    color: #90908f;
    margin-bottom: 0;
}

.sc-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
    margin-top: 12px;

}

.sc-content p {
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0;
}

.sc-content {
    padding-top: 80px;
}

.sc-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    height: auto;
}

.detail-services {

    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100%;


}

.sc-icon {
    background-color: #E0F2FE;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
}

.sc-title p {
    margin: 18px 0;
    color: #545454;
}

.auditservice {
    padding-top: 80px;
    padding-bottom: 80px;
}

.serv-head h2 {
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    font-size: 36px;
}

.auditservice .row {
    row-gap: 40px;
}

.virtual-visa {
    background-color: #0b1a2f;
    padding-top: 80px;
    padding-bottom: 80px;
}

.virtual-visa h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;
}

.visatitle h6 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.virtual-visa p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.virtual-visa .visa-list {
    list-style: none;
    padding: 0;
}

.virtual-visa .visa-list li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #cbd5e1;
}

.virtual-visa .visa-list li::before {
    content: '✔️';
    margin-right: 8px;
    color: #00c896;
}

.virtual-visa img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    
}