a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

p {
    margin: 0 0 1.5em;
    padding: 0;
}

.btn,
h1,
h2,
h3 {
    font-family: 'Alexandria', Helvetica, Verdana, Arial, sans-serif;
}

h1 {
    font-size: 25px;
}

.col-2-sm {
    width: 43%;
    float: right;
}

.btn.active,
.btn:hover {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19)
}

.hide-xs {
    display: none;
}

.shape svg {
    position: relative;
    display: block;
    fill: #fff;
}

.shape-divider-top {
    width: 100%;
    overflow: hidden;
    transform: rotate(180deg);
}

.shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(155% + 1.3px);
    height: 181px;
}

.shape-divider-top .shape-fill {
    fill: #FFFFFF;
}

.sec-pad-60 {
    padding: 60px 0;
}

.banner {
    padding: 20px 5px 50px 5px;
}

.banner .content {
    position: relative;
    color: #fff;
}

.banner .content p {
    margin: 10px auto 40px auto;
    color: #ecedef;
}

.btn {
    background: #fff;
    border: 3px solid #e8eaee;
    font-weight: 700;
    color: #142752;
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
    border-radius: 27.5px;
    padding: 15px 20px 15px 62px;
    position: relative;
}

.section-title {
    margin-bottom: 19px;
    display: inline-block;
    padding: 0 20px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.blog {
    padding: 40px 0;
}

.blog .section-title {
    box-shadow: inset -6px 0px 0 0 #fcce05;
    margin: 35px;
}

.sub-title {
    display: block;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 5px;
}

.sub-title:hover {
    color: #255ca2
}

.features .sub-title,
.our-service .sub-title {
    font-size: 17px;
    margin: 12px 0;
}

.flex-cont {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.card-sm {
    width: 41%;
    margin: 13px;
}

.collections.clear {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.card-sm-img {
    position: relative;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

p.card-sm-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    margin: 0;
    /* padding: 15px 4px; */
}

.card-sm-img a:before {
    content: " ";
    background: rgb(0 0 0 / 42%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, #232323b0, #0000);
    bottom: 0;
}

.card-sm-img a {
    display: block;
    position: relative;
}

.card-sm-img img {
    width: 100%;
}

.pad-5 {
    padding: 0 20px
}

.first-color {
    color: #0b2154;
}

.txt-gray {
    color: #7A7A7A;
}

.txt-gold {
    color: #fcce06;
}

.txt-justify {
    text-align: justify;
}

/* Customer Reviews Section Styles */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.review-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(45, 56, 145, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #2d3891;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 56, 145, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.customer-image,
.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #2d3891;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-avatar {
    background: linear-gradient(135deg, #2d3891, #4a5bc7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.customer-info {
    flex: 1;
}

.customer-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: #2d3891;
}

.customer-position {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    position: relative;
}

/* Animation for reviews on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item {
    animation: fadeInUp 0.6s ease forwards;
}

.review-item:nth-child(2) {
    animation-delay: 0.2s;
}

.review-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive styles for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .review-item::before {
        font-size: 60px;
        top: -5px;
        left: 15px;
    }
    
    .customer-image,
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .customer-avatar {
        font-size: 20px;
    }
    
    .customer-name {
        font-size: 16px;
    }
    
    .review-content p {
        font-size: 15px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #f8f9fa;
    position: relative;
}

.faq-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #2d3891;
    color: #fff;
    border-bottom: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3891;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.shape-divider-top {
    width: 100%;
    overflow: hidden;
    transform: rotate( 180deg);
    position: relative;
    top: -2px;
}

.shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(155% + 1.3px);
    height: 181px;
}

.shape-divider-top .shape-fill {
    fill: #ffffff;
}

.featurs-card {
    background-color: #ffffff;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.featurs-card .sub-title {
    font-size: 16px;
}

.service-card {
    width: 44%;
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    padding: 15px 0;
    -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
    box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
}

.overlay {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
    background: rgba(29, 64, 118, 0.95);
}

.our-service h2 {
    color: #fff;
}

.our-service {
    background-color: #255ca2;
    padding-bottom: 80px;
    box-shadow: inset 0 0 16px 2px #00000073;
}

section.citis {
    padding: 80px 0;
    background: #e4f2fd;
}

.city-innr a {
    background: #fff;
    padding: 6px 20px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 0px 6px #2a6ab440;
    font-size: 23px;
    font-weight: 800;
    color: #255ca2;
}

.icon {
    background-color: rgba(252, 206, 6, 0.58);
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    left: 5px;
    top: 12%;
    border-radius: 50%;
    font-size: inherit;
    text-align: center;
    line-height: 40px;
}

.banner .icon {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    animation: callrotate 2s infinite ease-in-out;
}

.banner .icon svg {
    transform: rotate( 276deg);
}

.relative {
    position: relative;
    z-index: 999;
}

.card {
    width: 100%;
    text-align: right;
    display: inline-block;
    margin-bottom: 25px;
}

.card-title {
    font-size: 1.15em;
    font-weight: 700;
    margin: 0px;
}

.card-content {
    padding: 10px 25px;
}

.card-excerpt {
    color: #313131;
    font-size: 14px;
}

.card-meta {
    margin-top: 10px;
}

.card-meta li {
    color: #677286;
    margin-right: 15px;
    font-size: 14px;
}

.card-meta li span {
    margin-left: 5px;
}

.card-archive .card-content {
    padding: 10px;
    margin: auto;
    width: 94%;
    background: #fff;
    border-radius: 9px;
    margin-top: -19px;
    position: relative;
    -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
    box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
    margin-bottom: 30px;
}

.card-archive .card-meta {
    border-top: 1px solid rgb(0 0 0 / 11%);
    margin-top: 10px;
    text-align: center;
}

.card-archive .card-img img {
    border-radius: 8px;
    width: 100%;
}

.service-card:hover,
.card:hover {
    -webkit-transform: translatey(-10px);
    -moz-transform: translatey(-10px);
    -ms-transform: translatey(-10px);
    -o-transform: translatey(-10px);
    transform: translatey(-10px);
}

@media only screen and (min-width: 480px) {
    .card-archive {
        width: 22%;
        float: right;
        margin-right: 2.7%;
        margin-left: auto;
    }
    .card-archive:nth-child(2n+1) {
        clear: right;
    }
}

@media only screen and (min-width: 768px) {
    .banner .content {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 120px;
    }
    h1 {
        font-size: 35px;
    }
    .our-featurs .txt-justify {
        padding-left: 40px;
    }
    .sec-pad-80 {
        padding: 80px 0
    }
    .banner {
        padding: 0;
    }
    .hide-xs {
        display: block;
    }
    .col {
        float: right;
    }
    .col-2 {
        width: 16.666667%
    }
    .col-5 {
        width: 50%;
    }
    .col-6 {
        width: 44%;
    }
    .col-7 {
        width: 56%;
    }
    .featurs-card {
        margin: 15px;
    }
    .card-archive {
        width: 22%;
    }
    .card-archive:nth-child(2n+1) {
        clear: none;
    }
    .card-sm{
        width: 14%;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer.active {
        padding: 15px 20px;
    }
    
    .faq-container {
        margin-top: 30px;
    }
}