@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
/*@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);*/

p {
    letter-spacing: 0.8px;
    margin: 0px;
    font-size: 15px !important;
}

#navbar {
    /* overflow: hidden; */
    background-color: transparent;
    transition: all 0.4s;
    width: 100%;
    top: 0;
    position: relative;
    z-index: 999;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

#logo {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.company-tagline {
    font-size: 1.2rem;
    color: #1875fd;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1875fd;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1875fd;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.dropdown-item.active {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    font-weight: 500;
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
    }
}

/* CTA Button */
.cta-button {
    position: relative;
    padding: 0.75rem 1.5rem;
    background: #f49c53;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 156, 83, 0.3);
}

.button-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover .button-effect {
    width: 200px;
    height: 200px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-wrapper {
        padding: 1rem 2rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .nav-wrapper {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .header-wrapper {
        padding: 1rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 1rem;
    }
    
    #logo {
        width: 50px;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Scroll Effect */
.header-wrapper.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Add this script to your existing script section */
<script>
window.addEventListener('scroll', function() {
    const header = document.querySelector('.header-wrapper');
    if (window.scrollY > 50) {
        header.classList.add('scrolled');
    } else {
        header.classList.remove('scrolled');
    }
});

function toggleMobileMenu(element) {
    element.classList.toggle('active');
    document.getElementById('mySidebar').classList.toggle('active');
}
</script>

.nav-wrapper {
    text-align: center;
    padding: 14px 0 0 0;
}
.nav-wrapper nav ul li {
    display: inline-block;
}

section#slider {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

section#slider + section {
    margin-top: 36rem;
}
@media screen and (max-width: 1000px) {
    section#slider {
        position: relative;
    }
    section#slider + section {
        margin-top: 0rem;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 36rem;
    object-fit: cover;
}

.slider-img-wrapper {
    position: relative;
    width: 100%;
}

.slider-text-wrapper {
    position: absolute;
    bottom: 10rem;
    left: 20rem;
    width: 50%;
    z-index: 999;
}
.layover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 1;
    top: 0;
}

#mainCoantiner {
    background-image: url("https://1.bp.blogspot.com/-Fo3iRt97ZXY/XvSG4EMwi0I/AAAAAAAAVEo/mrApRTcVVRk1m-fX9K-ffNwRUXlHUocdwCLcBGAsYHQ/s1600/h.jpg");

    background-color: #181828;
    height: 100%;
    width: 100%;
    padding-bottom: 50px;
}

.mystyleSec {
    background-image: url(http://thepatternlibrary.com/img/h.jpg);
}

.mystylethird {
    background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/binding_dark.png");
}

/*************header*******/

.main-header {
    top: 0;
    left: 0;
    z-index: 20;
    -webkit-transform: translate3d(0, 0, 0);
    height: 70px;
    width: 100%;
    bottom: inherit;
    text-align: center;
    background: rgba(28, 31, 47, 0.16);
    overflow: hidden;
    border: 1px solid #2e344d;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 10px 10px 36px rgb(0, 0, 0, 0.5),
        -13px -13px 23px rgba(255, 255, 255, 0.03);
    border-width: 1px 0px 0 1px;
}

.folio-btn {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    right: 0;
    height: 70px;
    width: 70px;
}

.folio-btn-item {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 15px;
    top: 15px;
}

.folio-btn-dot {
    float: left;
    width: 33.3%;
    height: 33.3%;
    position: relative;
}

.folio-btn-dot:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;
    border-radius: 50%;
    transition: all 300ms linear;
    transform: scale(1);
}

.folio-btn-dot:before {
    background: #00bcd4;
}

.folio-btn:hover .folio-btn-dot:first-child:before,
.folio-btn:hover .folio-btn-dot:nth-child(3):before,
.folio-btn:hover .folio-btn-dot:nth-child(4):before,
.folio-btn:hover .folio-btn-dot:nth-child(8):before {
    transform: scale(1.8);
    opacity: 0.5;
}

/***social***/
.header-social {
    position: absolute;
    z-index: 20;
    width: auto;
    bottom: 17px;
    right: 90px;
    padding: 0;
    min-width: 140px;
    box-shadow: 3px 9px 16px rgb(0, 0, 0, 0.4),
        -3px -3px 10px rgba(255, 255, 255, 0.06),
        inset 14px 14px 26px rgb(0, 0, 0, 0.3),
        inset -3px -3px 15px rgba(255, 255, 255, 0.05);
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #2e344d;
}

.header-social:before {
    background: #00bcd4;
}

.header-social:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -3px;
    width: 36px;
    margin-left: -18px;
    height: 6px;
}

.header-social li {
    display: block;
    float: left;
    margin-top: 0;
}

.header-social li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    font-size: 12px;
    border-style: solid;
    color: rgba(255, 255, 255, 0.41);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 300ms linear;
}

.header-social li a:hover {
    color: #00bcd4;
    cursor: pointer;
}

.main-header:before {
    content: "";
    position: absolute;
    left: 10px;
    width: 60px;
    height: 1px;
    bottom: 120px;
    background: rgba(255, 255, 255, 0.1);
}

/***end*****/

.wow-bg {
    background-color: #141421;
    border: 1px solid #2e2e4c;
    box-shadow: 3px 9px 16px rgb(0, 0, 0, 0.4),
        -3px -3px 10px rgba(255, 255, 255, 0.06),
        inset 14px 14px 26px rgb(0, 0, 0, 0.3),
        inset -3px -3px 15px rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 4px;
}

.starsec {
    content: " ";
    position: absolute;
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
        234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
        633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
        76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
        544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
        168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
        104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
        1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
        340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
        1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
        630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
        1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
        19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
        67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
        592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
        94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
        1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
        1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
        223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
        1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
        212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
        1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
        1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
        137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
        857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
        1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
        660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
        918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
        108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
        1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
        347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
        1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
        320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
        1546px 692px #f44336;
    animation: animStar 150s linear infinite;
}

.starthird {
    content: " ";
    position: absolute;
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
        234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
        633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
        76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
        544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
        168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
        104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
        1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
        340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
        1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
        630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
        1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
        19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
        67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
        592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
        94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
        1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
        1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
        223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
        1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
        212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
        1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
        1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
        137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
        857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
        1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
        660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
        918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
        108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
        1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
        347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
        1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
        320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
        1546px 692px #f44336;
    animation: animStar 10s linear infinite;
}

.starfourth {
    content: " ";
    position: absolute;
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
        234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
        633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
        76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
        544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
        168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
        104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
        1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
        340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
        1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
        630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
        1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
        19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
        67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
        592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
        94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
        1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
        1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
        223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
        1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
        212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
        1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
        1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
        137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
        857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
        1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
        660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
        918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
        108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
        1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
        347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
        1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
        320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
        1546px 692px #f44336;
    animation: animStar 50s linear infinite;
}

.starfifth {
    content: " ";
    position: absolute;
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
        234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
        633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
        76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
        544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
        168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
        104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
        1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
        340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
        1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
        630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
        1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
        19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
        67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
        592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
        94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
        1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
        1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
        223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
        1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
        212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
        1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
        1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
        137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
        857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
        1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
        660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
        918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
        108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
        1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
        347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
        1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
        320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
        1546px 692px #f44336;
    animation: animStar 80s linear infinite;
}

@keyframes animStar {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-2000px);
    }
}

.logn-btn {
    background: #1c1f2f;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #2e344d;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 0px 2px 26px rgb(0, 0, 0, 0.5),
        0px 7px 13px rgba(255, 255, 255, 0.03);
    margin-top: 30px;
}

.logn-btn:hover {
    background-color: #1c1f2f;
    border-radius: 50px;
    min-width: 140px;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 3px 9px 16px rgb(0, 0, 0, 0.4),
        -3px -3px 10px rgba(255, 255, 255, 0.06),
        inset 14px 14px 26px rgb(0, 0, 0, 0.3),
        inset -3px -3px 15px rgba(255, 255, 255, 0.05);
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #2e344d;
}

.textbox-dg {
    background: rgba(28, 31, 47, 0.16);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #2e344d;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 10px 10px 36px rgb(0, 0, 0, 0.5),
        -13px -13px 23px rgba(255, 255, 255, 0.03);
    border-width: 1px 0px 0 1px;
    margin-top: 15px;
}

.form-control:focus {
    border: 1px solid #344d2e;
    color: #495057;
    outline: 0;
    background: rgb(17, 20, 31);
    border-radius: 4px;
    transition: all 0.3s ease-in-out 0s;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 10px 10px 36px rgb(0, 0, 0, 0.5),
        -13px -13px 23px rgba(255, 255, 255, 0.03);
}

.btn-link {
    color: #344d2e;
}

.btn-link:hover {
    color: #2b7a19;
    text-decoration: underline;
}

.mt-6,
.my-6 {
    margin-top: 2rem !important;
}

.socila-btn {
    height: 40px;
    border-radius: 10%;
    width: 40px;
    box-shadow: 3px 9px 16px rgb(0, 0, 0, 0.4),
        -3px -3px 10px rgba(255, 255, 255, 0.06),
        inset 14px 14px 26px rgb(0, 0, 0, 0.3),
        inset -3px -3px 15px rgba(255, 255, 255, 0.05);
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    margin-right: 10px;
}

.fb-color {
    color: #3b5998;
}

.incolor {
    color: #007bff;
}

.tweetcolor {
    color: #41a4f7;
}

.driblecolor {
    color: #e83e8c;
}

.colorboard {
    color: #00ffaaed;
}

/* blogs */
.blog-card {
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    height: 30rem;
}

.blog-card-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.tag {
    background: #cccccc;
    border-radius: 50px;
    font-size: 12px;
    margin: 0;
    color: #fff;
    padding: 2px 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.tag-teal {
    background-color: #47bcd4;
}

.tag-purple {
    background-color: #5e76bf;
}

.tag-pink {
    background-color: #cd5b9f;
}

.blog-card-body p {
    font-size: 13px;
}

/* footer */
.col_white_amrc {
    color: #fff;
}

footer {
  width: 100%;
    background: rgba(51, 83, 211, 0.315) url("/mountain.jpg") no-repeat fixed center; 
    min-height: 250px;
    padding: 2rem;
}

.pt2 {
    padding-top: 40px;
    margin-bottom: 20px;
}

footer p {
    font-size: 18px;
    color: #fff;
    padding-bottom: 0px;
    margin-bottom: 8px;
}

.mb10 {
    padding-bottom: 15px;
}

.footer_ul_amrc {
    margin: 0px;
    list-style-type: none;
    font-size: 18px;
    padding: 0px 0px 10px 0px;
}

.footer_ul_amrc li {
    padding: 0px 0px 5px 0px;
}

.footer_ul_amrc li a {
    color: #fff;
}

.footer_ul_amrc li a:hover {
    color: #fff;
    text-decoration: none;
}

.fleft {
    float: left;
}

.padding-right {
    padding-right: 10px;
}

.footer_ul2_amrc {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

.footer_ul2_amrc li p {
    display: table;
}

.footer_ul2_amrc li a:hover {
    text-decoration: none;
}

.footer_ul2_amrc li i {
    margin-top: 5px;
}

.bottom_border {
    border-bottom: 1px solid #323f45;
    padding-bottom: 20px;
}

.foote_bottom_ul_amrc {
    list-style-type: none;
    padding: 0px;
    display: table;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
}

.foote_bottom_ul_amrc li {
    display: inline;
}

.foote_bottom_ul_amrc li a {
    color: #999;
    margin: 0 12px;
}

.social_footer_ul {
    display: table;
    margin: 15px auto 0 auto;
    list-style-type: none;
}

.social_footer_ul li {
    padding-left: 20px;
    padding-top: 10px;
    float: left;
}

.social_footer_ul li a {
    color: #ccc;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 50%;
}

.social_footer_ul li i {
    width: 20px;
    height: 20px;
    text-align: center;
}

/* testi */



figure.snip1390 {
    
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 35rem;
    width: 100%;
    height: 31rem;
    color: #000000;
    text-align: center;
    font-size: 16px;
    background-color: #0d6efd;
    padding: 30px;
    background-image: linear-gradient(
        -25deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

figure.snip1390 figcaption {
    width: 100%;
}

figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
    margin: 0;
}

figure.snip1390 h2,
figure.snip1390 h4 {
    font-weight: 300;
}

figure.snip1390 h2 {
    color: #ffffff;
}

figure.snip1390 h4 {
    color: #a6a6a6;
}

figure.snip1390 blockquote {
    font-size: 1em;
    padding: 45px 20px 40px 50px;
    margin-top: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
}

figure.snip1390 blockquote:before {

    content: "\201C";
    position: absolute;
    font-size: 70px;
    opacity: 0.25;
    font-style: normal;
    top: 0px;
    left: 20px;
}

figure.snip1390 .profile {
    width: 100px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    border: solid 5px #a6a57a;
}

/* form */

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    color: #5a5a5a;
    font: inherit;
    margin: 0;
}

input {
    line-height: normal;
}

textarea {
    overflow: auto;
}

#container {
    border: solid 3px #0651ba;
    max-width: 768px;
    margin: 60px auto;
    position: relative;
}

form#contact_form {
    padding: 10px 10px 53px 10px;
}

h1 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-transform: capitalize;

}

h2 {
    font-size: 20px !important;
    letter-spacing: 2px !important;
    text-align: left !important;
    text-transform: capitalize !important;
}

h3 {
    font-size: 18px !important;
    letter-spacing: 2px !important;
    text-align: left !important;
    text-transform: capitalize !important;
}

.underline {
    border-bottom: solid 2px #0651ba;
    margin: -0.512em auto;
    width: 80px;
}

.icon_wrapper {
    margin: 50px auto 0;
    width: 100%;
}

.icon {
    display: block;
    fill: #474544;
    height: 50px;
    margin: 0 auto;
    width: 50px;
}

.email {
    float: right;
    width: 45%;
}

input[type="text"],
[type="email"],
select,
textarea {
    background: none;
    border: none;
    border-bottom: solid 2px #0651ba;
    color: #474544;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0em 0 1.875em 0;
    /* padding: 0 0 0.875em 0; */
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type="text"]:focus,
[type="email"]:focus,
textarea:focus {
    outline: none;
}

.form-control:focus {
    border: 1px solid #f49c53;
    color: #495057;
    outline: 0;
    background: rgb(17, 20, 31);
    border-radius: 4px;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 10px 10px 36px rgb(0 0 0 / 50%),
        -13px -13px 23px rgb(255 255 255 / 3%);
}

.message {
    float: none;
}

.name {
    float: left;
    width: 45%;
}

select {
    background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png")
        no-repeat right;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

.subject {
    width: 100%;
}

.telephone {
    width: 100%;
}

textarea {
    line-height: 150%;
    resize: none;
    width: 100%;
}

::-webkit-input-placeholder {
    color: #474544;
}

:-moz-placeholder {
    color: #474544;
    opacity: 1;
}

::-moz-placeholder {
    color: #474544;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #474544;
}

#form_button {
    background: none;
    border: solid 2px #0651ba;
    color: #0651ba;
    cursor: pointer;
    float: right;
    font-size: 0.875em;
    font-weight: bold;
    outline: none;

    padding: 12px 18px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#form_button:hover {
    background: #f49c53;
    border: solid 2px #f49c53;
    color: #f2f3eb;
}

@media screen and (max-width: 768px) {
    #container {
        margin: 20px auto;
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    .underline {
        width: 68px;
    }

    #form_button {
        padding: 15px 25px;
    }
}

@media screen and (max-width: 420px) {
    h1 {
        font-size: 18px;
    }

    .icon {
        height: 35px;
        width: 35px;
    }

    .underline {
        width: 53px;
    }

    input[type="text"],
    [type="email"],
    select,
    textarea {
        font-size: 0.875em;
    }
}

/*subscribe */

.newsletter-subscribe {
    color: #313437;
    background-color: #ffffff;
    padding: 55px 74px;
}

.newsletter-subscribe p {
    color: #7d8285;
    line-height: 1.5;
}

.newsletter-subscribe h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.5;
    padding-top: 0;
    margin-top: 0;
    color: inherit;
}

.newsletter-subscribe .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 25px;
}

.newsletter-subscribe .intro p {
    margin-bottom: 35px;
}

.newsletter-subscribe form {
    justify-content: center;
    display: flex;
}

.newsletter-subscribe form .form-control {
    background: #eff1f4;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    color: inherit;
    text-indent: 9px;
    height: 45px;
    margin-right: 10px;
    width: 20rem;
}

.newsletter-subscribe form .btn {
    padding: 16px 32px;
    border: none;
    background: none;
    box-shadow: none;
    text-shadow: none;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.4px;
    line-height: 1;
}

.newsletter-subscribe form .btn:hover {
    opacity: 1;
}

.newsletter-subscribe form .btn:active {
    transform: translateY(1px);
}

.newsletter-subscribe form .btn-primary {
    background-color: #f49c53 !important;
    color: #fff;
    outline: none !important;
}

.newsletter {
    color: #0062cc !important;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 660px !important;
        margin: 1.75rem auto;
    }
}

.intro {
    padding: 3rem 0;
    background-color: whitesmoke;
}

.swiper.test-mySwiper .swiper-slide img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid blue;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-info-wrapper .info {
    width: 40%;
    background: #f49c53;
    color: white;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-wrapper .contact {
    width: 60%;
    padding: 1rem;
}

.col {
    cursor: pointer;
    transition: 0.5s all;
}

.col:hover {
    cursor: pointer;
    transition: 0.5s all;
    background-color: #0062cc;
    color: white;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center;
}
.down-banner {
    position: relative;
    z-index: 999;
    top: -60px;
}
.box {
    border: 1px solid transparent;
    background: #fff;
    padding: 25px 5%;
}
.box .icon {
    font-size: 30px;
}
.why-us {
    margin: 90px 0;
}
.why-us .cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-us .cards_item {
    display: flex;
    padding: 1rem;
}

.why-us .card_image {
    position: relative;
    max-height: 250px;
}

.why-us .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 40rem) {
    .why-us .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .why-us .cards_item {
        width: 33.3333%;
    }
}

.why-us .card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.why-us .card_content {
    position: relative;
    padding: 16px 12px 32px 24px;
    margin: 16px 8px 8px 0;
    max-height: 290px;
    overflow-y: scroll;
}

.why-us .card_content::-webkit-scrollbar {
    width: 8px;
}

.why-us .card_content::-webkit-scrollbar-track {
    box-shadow: 0;
    border-radius: 0;
}

.why-us .card_content::-webkit-scrollbar-thumb {
    background: #c89b3f;
    border-radius: 15px;
}

.why-us .card_title {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.why-us .card_title::after {
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c89b3f;
    content: "";
}

.why-us hr {
    margin: 24px auto;
    width: 50px;
    border-top: 2px solid #c89b3f;
}

.why-us .card_text p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
}

.why-us .card_text p:last-child {
    margin: 0;
}

/* CSS for "More" button */
.c_dropdown {
    position: relative;
}

.cdropdown_content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 8px;
    min-width: 120px;
    margin-top: 0;
}

.nav-item:hover .cdropdown_content {
    display: block;
}

.cdropdown_content a {
    display: block;
    color: #0d6efd;
    text-decoration: none;
    padding: 10px 8px;
}

.cdropdown_content a:hover {
    background-color: #f0f0f0;
}
.about-intro .about-wrapper h1 {
    margin: 15px 0;
}
.about-intro .about-wrapper p {
    margin: 40px 0px;
}
.intro_wrapper {
    margin-top: 3rem;
    margin-bottom: 4rem;
}
.intro_wrapper h4 span a {
    text-decoration: none;
}
.intro_wrapper h4 span a:hover {
    text-decoration: underline;
    color: #0d6efd;
}
.who-are-we h3 {
    margin-top: 50px;
    margin-bottom: 30px;
}
.who-are-we p {
    margin-bottom: 90px;
}

.timeline {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    position: relative;
}

.timeline__event {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 20px 0;
    border-radius: 6px;
    align-self: center;
    width: 50vw;
}

.timeline__event__title {
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #f49c53;
    letter-spacing: 1.5px;
}

.timeline__event__content {
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: #fff;
    width: calc(40vw - 84px);
    border-radius: 0 6px 6px 0;
}

.timeline__event__date {
    color: #e6d5c6;
    font-size: 1.5rem;
    font-weight: 600;
    background: #f49c53;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
}

.timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f49c53;
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: #f2c7a1;
    border-radius: 100%;
    width: 110px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding: 40px;
    height: 110px;
    position: relative;
}

.timeline__event__icon i {
    font-size: 32px;
}

.timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 150%;
    background: #f49c53;
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #f49c53;
    position: absolute;
    left: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

.timeline__event__description {
    flex-basis: 100%;
}

.timeline__event--type2:after {
    background: #007aff;
}

.timeline__event--type2 .timeline__event__date {
    color: #cce0f6;
    background: #007aff;
}

.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:before,
.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:after {
    background: #cce0f6;
}

.timeline__event--type2 .timeline__event__icon {
    background: #cce0f6;
    color: #007aff;
}

.timeline__event--type2 .timeline__event__title {
    color: #555ac0;
}

.timeline__event:last-child .timeline__event__icon:before {
    content: none;
}

@media (max-width: 786px) {
    .timeline__event {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event__content {
        width: 100%;
    }

    .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .timeline__event__date {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__event:nth-child(2n + 1) .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        margin: 0;
    }

    .timeline__event:nth-child(2n + 1) .timeline__event__date {
        border-radius: 0;
        padding: 20px;
    }
}

@keyframes fillLeft {
    100% {
        right: 100%;
    }
}

@keyframes fillTop {
    100% {
        top: 100%;
    }
}

@keyframes fillLeftOdd {
    100% {
        left: 100%;
    }
}
.timeline__event__date img {
    height: 100px;
    width: 150px;
    object-fit: cover;
}
.pack{
    background-color: #f2c7a1;
}
.package{
    padding: 20px 0;
   
}

.package .accordion {
     background-color: #fff;
     color: #000; 
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #6c757d;
    text-align: left;
    /* outline: none; */
    font-size: 18px;
    transition: 0.4s;
  }
  
  .package .active, .accordion:hover {
    background-color: #ccc; 
  }
  
  .package .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }
  .package .acc-title{
    background-color: #f49c53;
    color: #fff;
    margin-bottom: 0;
    padding: 0.8rem;
    text-align: left;
  }
.pack {
    background-color: #f2c7a1;
}
.package {
    padding: 30px 0;
  
}

.package .accordion {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.package .active,
.accordion:hover {
    background-color: #ccc;
}

.package .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}
.package .acc-title {
    background-color: #f49c53;
    color: #fff;
    margin-bottom: 0;
    padding: 0.8rem;
    text-align: left;
}



.pb-70 {
    padding-bottom: 70px !important;
}
.pt-80 {
    padding-top: 80px !important;
}
.font__weight-thin {
    font-weight: 100;
}
.divider {
    width: 35px;
    height: 2px;
    background: #2775ff;
    margin: 25px auto 32px;
    border: 0;
}
.panel__head,
.panel__list {
    text-align: left;
}

.panel__wrapper-icon .panel__head {
    background: linear-gradient(to right, #2775ff, #7202bb);
    padding: 24px 40px;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {.panel__wrapper-icon .panel__head {
    padding: 24px 50px;
}}

@media (min-width: 992px) {.panel__wrapper-icon .panel__head {
    display: flex;
    align-items: center;
}}

@media (min-width: 992px) {.panel__wrapper-icon .panel__head p {
    margin-top: 0;
    margin-left: 58px;
}}
.panel__wrapper-icon .panel__head p {
    flex: 1;
    margin-top: 20px;
}
.font__size-14 {
    font-size: 0.875rem;
}

.panel__head,
.panel__list {
    text-align: left;
}

.panel__wrapper-icon .panel__list {
    background: #fff;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.12);
}
.panel__head,
.panel__list {
    text-align: left;
}
.panel__list {
    list-style: none;
    margin: 0;
}
.panel__wrapper-icon .panel__list li {
    color: #4e4e4e;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 1;
    padding: 28px;
}

.panel__wrapper-icon .panel__list li .line {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #2775ff, #7202bb);
    opacity: 0;
    transition: all 0.3s ease;
}
.panel__wrapper-icon .panel__list li:hover {
    z-index: 2;
}
.panel__wrapper-icon .panel__list li:hover .line {
    opacity: 1;
    left: -15px;
    transition-delay: 0.1s;
}

.panel__wrapper-icon .panel__list li:nth-child(2n) {
    background: #f6f6f6;
}

@media screen and (min-width: 576px) {
    .panel__wrapper-icon .panel__list li {
        padding-left: 110px;
    }
}

.panel__wrapper-icon .panel__list li {
    color: #4e4e4e;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 1;
    padding: 28px;
}

.panel__wrapper-icon .panel__list li:hover:after,
.panel__wrapper-table .panel__list li:hover:after {
    transform: scale(1);
    opacity: 1;
}

.panel__wrapper-gradient .panel__list li:after,
.panel__wrapper-icon .panel__list li:after,
.panel__wrapper-table .panel__list li:after {
    content: "";
    position: absolute;
    top: -6px;
    left: -15px;
    right: -15px;
    bottom: -6px;
    background: #fff;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.95);
    z-index: -1;
}


.panel__wrapper-icon .panel__head p {
    margin-top: 0;
    margin-left: 58px;
}

.panel__wrapper-icon .panel__head {
    display: flex;
    align-items: center;
}

.font__size-21 {
    font-size: 1.3125rem;
}

.panel__wrapper-icon .panel__list li .icon {
    font-size: 36px;
    color: #2775ff;
    opacity: 0.5;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 20px;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    margin-left: 0 !important;
}
.icon {
    display: inline-block;
    text-align: center;
}
.fal,
.far {
    font-weight: 600 !important;
}
.panel__wrapper-icon .panel__list li {
    color: #4e4e4e;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 1;
    padding: 14px;
}

.panel__wrapper-icon .panel__list li .icon {
    position: absolute;
    left: 40px;
    margin-bottom: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.panel__wrapper-icon .panel__list li {
    padding-left: 110px;
}
.panel__wrapper-icon .panel__list li:hover .icon {
    opacity: 1;
}

/************************************/
.list-inline-4 li:hover > .after,
.list-inline-5 > li.list-counter:hover .list-shape,
.list-inline-5 > li.list-counter:hover > .after {
    opacity: 1;
}

.list-inline-4 li > .after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(to right, #2775ff, #7202bb);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}
.list-inline-4 li > .before {
    top: 50%;
    transform: translateY(-50%);
    left: 1.25em;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.list-inline-3 li > .after,
.list-inline-4 li > .before {
    position: absolute;
    transition: all 0.4s ease;
    background: #2775ff;
}
.list-inline-4 li {
    display: block;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 0.875em 0.875em 0.875em 3.4375em;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.font__size-16 {
    font-size: 1rem;
}


.list-inline-4 li {
    display: block;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 0.875em 0.875em 0.875em 3.4375em;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.mb-35 {
    margin-bottom: 35px !important;
}
.mb-100 {
    margin-bottom: 100px !important;
}
.list-inline-4 li + li {
    margin-top: 10px;
}
.list-inline-4 li:hover > .after,
.list-inline-5 > li.list-counter:hover .list-shape,
.list-inline-5 > li.list-counter:hover > .after {
    opacity: 1;
}
.list-inline-4 li .icon {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}
.list-inline-4 li:hover > .before {
    background: 0 0;
    width: 14px;
    height: 14px;
}
.list-inline-4 li:hover {
    color: #fff;
    box-shadow: 0 5px 16px 0 rgba(165, 165, 165, 0.5);
}
.list-inline-3 li:hover,
.list-inline-3 li:hover a,
.list-inline-4 li:hover a,
.list-inline-5 > li.list-counter:hover,
.list-inline-5 > li.list-counter:hover a,
.list-inline-5 > li.list-counter:hover > .before,
.list-inline-6 li:hover:before {
    color: #fff;
}

.fa-angle-right:before {
    content: "\f105";
}

[class*="list-inline"] a {
    transition: none;
    text-decoration: none !important;
}
.letter-spacing-60 {
    letter-spacing: 0.06em;
}
.font__size-46 {
    font-size: 2.875rem;
}
.font__weight-thin {
    font-weight: 100;
}

.text-uppercase {
    text-transform: uppercase !important;
}
.line__height-26 {
    line-height: 1.625rem;
}
.font__size-16 {
    font-size: 1rem;
}
.font__weight-normal {
    font-weight: 400;
}
.brk-dark-font-color {
    color: #585858;
}



.pb-70 {
    padding-bottom: 70px !important;
}

a {
    font: inherit;
    color: #f49c53;
    text-decoration: none;
}

/*******************************************/
.overflow-hid {
    overflow: hidden !important;
}
.bg__style {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.position-relative {
    position: relative !important;
}
.brk-abs-bg-overlay,
.brk-abs-img,
.brk-abs-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.opacity-90 {
    opacity: 0.9;
}
.brk-base-bg-gradient-50deg {
    background-image: linear-gradient(
        to right,
        #1d5199,
        #0651ba,
        #223d62,
        #1e58a8,
        #3562a0
    );
}

.info-box__wrapper-web {
    padding: 70px 20px;
}
.info-box__wrapper-web {
    text-align: left;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
[class*="info-box__wrapper"] {
    transition: all 0.4s ease;
}
.info-box__wrapper-strict,
.info-box__wrapper-web .shape {
    position: relative;
    z-index: 1;
}
.info-box__wrapper-web .shape:before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.info-box__wrapper-web .livicon-evo,
.info-box__wrapper-web .shape:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.info-box__wrapper-web .shape > .after,
.info-box__wrapper-web .shape > .before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #fff;
    transition: all 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}
.info-box__wrapper-web .shape > .before {
    transform: scale(1.35);
}
.info-box__wrapper-web .svg-wrap {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: linear-gradient(to top, var(--brk-base-6), var(--brk-base-2));
    transition: all 0.4s ease;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    transform: scale(0);
}
.info-box__wrapper-web .svg-wrap svg {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
[class*="info-box__wrapper"] svg {
    transition: all 0.4s ease;
    width: 84px;
    height: 84px;
}
.info-box__wrapper-web .shape > .after,
.info-box__wrapper-web .shape > .before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #fff;
    transition: all 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}
.info-box__wrapper-web .shape:after {
    content: "";
}
.info-box__wrapper-web .shape:after {
    position: absolute;
    bottom: calc(50% + 7px);
    left: calc(50% - 1px);
    width: 2px;
    height: 100vh;
    background: #fff;
}
.info-box__wrapper-web .content > * {
    color: #fff;
}
.info-box__wrapper-web .content p {
    color: #b3daee;
    margin-top: 15px;
}
.info-box__wrapper-web.current .shape > .before,
.info-box__wrapper-web:hover .shape > .before,
.wpb_column.current .info-box__wrapper-web .shape > .before {
    -webkit-animation: 1.5s brk-pulse 0.3s infinite;
    animation: 1.5s brk-pulse 0.3s infinite;
    opacity: 0.1;
}
.info-box__wrapper-web .shape > .after,
.info-box__wrapper-web .shape > .before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #fff;
    transition: all 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}
.info-box__wrapper-web .shape > .before {
    transform: scale(1.35);
}
.info-box__wrapper-web.current .svg-wrap,
.info-box__wrapper-web:hover .svg-wrap {
    transform: scale(1);
}
.info-box__wrapper-web .svg-wrap {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: linear-gradient(to top, #0b98f6, #00c6ff);
    transition: all 0.4s ease;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    transform: scale(0);
}
.info-box__wrapper-shuffle.current svg *,
.info-box__wrapper-shuffle:hover svg *,
.info-box__wrapper-web svg *,
.wpb_column.current .info-box__wrapper-strict svg * {
    stroke: #fff;
}

.wpb_column.current .info-box__wrapper-web .svg-wrap {
    transform: scale(1);
}
.wpb_column.current .info-box__wrapper-web .shape > .before {
    animation: 1.5s brk-pulse 0.3s infinite;
    opacity: 0.1;
}
.wpb_column.current .info-box__wrapper-web .shape > .after {
    animation: brk-pulse 1.5s infinite;
    opacity: 0.2;
}
@-webkit-keyframes brk-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes brk-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}
@-webkit-keyframes brk-pulse-paused {
    0%,
    to {
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    60% {
        transform: scale(0.9);
        opacity: 0;
    }
}
@keyframes brk-pulse-paused {
    0%,
    to {
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    60% {
        transform: scale(0.9);
        opacity: 0;
    }
}

.text-wrapper.mt-2{
    display: flex;
    flex-direction: column;
}

.img-box {
    display: flex;
    justify-content: center;
}

.blog-description a {
    color: #f49c53 !important;
    font-weight:600 !important;
    
}
.message-wrapper {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.message-image {
    width: 40%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
}

.message-title {
    flex: 1;
}

.message-title h3 {
    margin: 0;
}

.message-title h5 {
    margin: 0.5rem 0 0;
    color: #0651ba;
}

.message-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.text-primary {
    color: #0651ba !important;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .message-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .message-image {
        width: 100%;
        max-width: 100%;
    }
}

/* Modern About Section Styles */
.modern-about-section {
    padding: 20px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 81, 186, 0.05) 0%, rgba(244, 157, 81, 0.05) 100%);
    z-index: 0;
}

/* Image Styles */
.modern-image-wrapper {
    position: relative;
    padding-right: 2rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .featured-image {
    transform: scale(1.05);
}

.image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-gradient {
    opacity: 1;
}

.experience-floating-card {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: linear-gradient(135deg, #0651ba, #0a6efd);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(6, 81, 186, 0.3);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.experience-floating-card:hover {
    transform: translateX(-10px);
}

.card-content {
    text-align: center;
    color: white;
}

.card-content .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.card-content .subtitle {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.card-content .title {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Content Styles */
.modern-content-wrapper {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0651ba, #f49d51);
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: #0651ba;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: #333;
}

.gradient-text {
    background: linear-gradient(135deg, #0651ba, #f49d51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats Styles */
.modern-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-value span {
    color: #0651ba;
}

.stat-title {
    font-size: 1rem;
    color: #666;
}

/* Description Styles */
.modern-description {
    margin: 2.5rem 0;
}

.modern-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Styles */
.modern-contact {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 81, 186, 0.1);
    border-radius: 12px;
    color: #0651ba;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-box:hover .icon-box {
    background: #0651ba;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0651ba;
}

.phone-numbers {
    display: flex;
    gap: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .modern-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .modern-image-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .modern-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modern-content-wrapper {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 20px 0;
    }
    
    .modern-title {
        font-size: 2rem;
    }
    
    .modern-stats {
        grid-template-columns: 1fr;
    }
    
    .modern-contact {
        grid-template-columns: 1fr;
    }
    
    .experience-floating-card {
        bottom: 20px;
        padding: 20px;
    }
    
    .card-content .number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .modern-title {
        font-size: 1.8rem;
    }
    
    .modern-description p {
        font-size: 0.95rem;
    }
}

/* Modern Services Section Styles */
.modern-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(6, 81, 186, 0.02) 0%, rgba(244, 157, 81, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, #0651ba, #f49d51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 81, 186, 0.2), rgba(244, 157, 81, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(0);
}

.service-icon i {
    font-size: 24px;
    color: #0651ba;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #0651ba;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0651ba;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #f49d51;
}

.service-link:hover i {
    transform: translateX(5px);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-title {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .modern-services-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .modern-services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image-wrapper {
        height: 180px;
    }
}

/* Modern Services Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 81, 186, 0.1), rgba(244, 157, 81, 0.1));
    padding: 8px 20px;
    border-radius: 30px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
}

.badge-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0651ba, #f49d51);
    border-radius: 2px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0651ba;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0651ba, #f49d51);
    border-radius: 3px;
}

.highlight-text {
    background: linear-gradient(135deg, #0651ba, #f49d51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-badge {
        padding: 6px 16px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}



