
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 96px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 70px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgb(10 32 78 / 77%), rgb(10 32 78 / 81%)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: #13357B !important;
}

a.btn-square.btn.btn-primary.rounded-circle.mx-1 {
    border: 1px solid #fff;
}

.cm-heading h1 {
    font-size: 44px !important;
}

.cm-heading h4 {
    font-size: 14px !important;
}

.cm-heading p {
    font-size: 16px !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/



/* Desktop */
.navbar-brand img {
    height: 96px;
    width: auto;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 55px;
    }
}


/* Services Section Layout */

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Desktop */
    gap: 25px;
}

/* Individual Card Styling */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(19, 53, 123, 0.15); /* Theme blue subtle shadow */
}

/* Icon & Typography */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #13357B; /* Matching template's primary deep blue */
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Aligns buttons evenly */
}

/* Action Buttons */
.service-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}


.btn-call {
    background-color: #13357B; /* Match "Read More" button blue */
    color: #ffffff;
    border: 1px solid #13357B;
}

.btn-call:hover {
    background-color: #0f2c59;
    border-color: #0f2c59;
}

.btn-whatsapp {
    background-color: transparent;
    color: #25D366; /* Standard WhatsApp Green */
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: #ffffff;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablets */
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr; /* 1 Column on Mobile screens */
    }
}


/*=========================
    District Section
=========================*/

.districts-section{
    padding:80px 0;
    background:#f8f9fb;
}

.districts-section .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    font-size:16px;
    line-height:1.7;
}

.district-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.district-card{
    background:#fff;
    border-radius:10px;
    padding:18px 20px;
    text-decoration:none;
    color:#111827;
    font-size:15px;
    font-weight:600;
    border:1px solid #e9ecef;
    transition:.35s;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.district-card:hover{
    background:#13357B;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(13,110,253,.25);
}

/* Tablet */

@media(max-width:991px){

.district-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:32px;
}

}

/* Mobile */

@media(max-width:576px){

.district-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:26px;
}

.section-title p{
    font-size:15px;
}

.district-card{
    font-size:14px;
}

}

/*=========================
      Why Choose Us
==========================*/

.why-choose-us{
    padding:90px 0;
    background:#ffffff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    display:inline-block;
    color:#13357B;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    border-radius:12px;
    padding:35px 30px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.why-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.icon{
    width:75px;
    height:75px;
    background:#13357B;
    color:#fff;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.3s;
}

.why-box:hover .icon{
    transform:rotateY(180deg);
}

.why-box h4{
    font-size:22px;
    margin-bottom:15px;
    color:#222;
}

.why-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:767px){

.why-grid{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:28px;
}

.why-box{
    padding:30px 25px;
}

}








 .wp-google-reviews-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #202124;
    text-align: left;
  }

  /* Header Section Styling matching Google Maps Summary Card */
  .wp-g-reviews-header {
    border-bottom: 1px solid #e8eaed;
    padding-bottom: 24px;
    margin-bottom: 28px;
  }

  .wp-g-business-name {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 4px 0 !important;
    color: #202124;
  }

  .wp-g-business-tagline {
    font-size: 14px;
    color: #70757a;
    margin: 0 0 16px 0 !important;
  }

  .wp-g-score-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .wp-g-numeric-score {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #202124;
  }

  .wp-g-stars-col {
    display: flex;
    flex-direction: column;
  }

  .wp-g-stars-row {
    color: #fbbc05;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
  }

  .wp-g-review-count {
    font-size: 12px;
    color: #70757a;
    margin-top: 6px;
  }

  /* CSS Grid Configuration for 3-Column Layout */
  .wp-g-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }

  /* Individual Grid Card Styling */
  .wp-g-review-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
  }
  
  .wp-g-review-card:hover {
    box-shadow: 0 1px 6px rgba(32,33,36,0.1);
  }

  .wp-g-user-info-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  /* Authentic Profile Avatar Circle Generator */
  .wp-g-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
  }

  /* Accurate Google Profile Colors */
  .wp-g-avatar.c-green { background-color: #107c41; }
  .wp-g-avatar.c-purple { background-color: #8e24aa; }
  .wp-g-avatar.c-blue { background-color: #1a73e8; }
  .wp-g-avatar.c-orange { background-color: #e65100; }
  .wp-g-avatar.c-teal { background-color: #00796b; }
  .wp-g-avatar.c-red { background-color: #d32f2f; }
  .wp-g-avatar.c-pink { background-color: #c2185b; }

  .wp-g-user-meta-details {
    display: flex;
    flex-direction: column;
  }

  .wp-g-user-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0 !important;
    color: #202124;
  }

  .wp-g-user-badges {
    font-size: 12px;
    color: #70757a;
    margin-top: 2px;
  }

  .wp-g-card-stars {
    color: #fbbc05;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .wp-g-review-body {
    font-size: 13px;
    line-height: 1.6;
    color: #3c4043;
    margin: 0 0 16px 0 !important;
    flex-grow: 1;
  }

  .wp-g-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #70757a;
    border-top: 1px id #f1f3f4;
    padding-top: 8px;
  }

  .wp-g-thumbs-up {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }
  
  
  /* Updated Flex Header Framework */
  .wp-g-reviews-header {
    border-bottom: 1px solid #e8eaed;
    padding-bottom: 24px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  /* Responsive desktop alignment adjustments */
  @media (min-width: 600px) {
    .wp-g-reviews-header {
      flex-direction: row;
      align-items: center;
    }
  }

  .wp-g-header-left {
    display: flex;
    flex-direction: column;
  }

  .wp-g-header-right {
    flex-shrink: 0;
  }

  /* Authentic Blue Google Map CTA Action Button Styling */
  .wp-g-write-btn {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 100px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    transition: background-color 0.2s, box-shadow 0.2s;
  }

  .wp-g-write-btn:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  }
  
  .at-faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    text-align: center;
  }

  /* --- Subtitle with Lines (Matches 'CONTACT US' styling) --- */
  .at-faq-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .at-faq-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #0f3484; /* Deep Navy Blue */
  }

  .at-faq-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #0f3484;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 !important;
  }

  /* --- Main Title --- */
  .at-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0e1e38;
    margin: 0 0 40px 0 !important;
  }

  /* --- Grid Layout --- */
  .at-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    align-items: start;
  }

  /* --- Smooth Accordion Card Layout --- */
  .at-faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: left;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Open State Effects */
  .at-faq-card[open] {
    border-color: #0f3484;
    box-shadow: 0 4px 20px rgba(15, 52, 132, 0.08);
  }

  /* --- Question Trigger Area --- */
  .at-faq-question {
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0e1e38;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease;
  }

  .at-faq-question:hover {
    background-color: #fafbfc;
  }

  /* Custom Clean Smooth Indicator (+) */
  .at-faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #0f3484;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Rotate indicator when active */
  .at-faq-card[open] .at-faq-question::after {
    transform: rotate(45deg);
    color: #0f3484;
  }

  /* Hide default arrows across browsers */
  .at-faq-question::-webkit-details-marker {
    display: none;
  }

  /* --- Smooth Animation & Content Wrap --- */
  .at-faq-content-animate {
    border-top: 1px solid #f1f5f9;
    background-color: #fafbfc;
  }

  /* Smooth Dropdown Frame CSS Animation */
  .at-faq-card[open] .at-faq-content-animate {
    animation: at-slide-down 1.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .at-faq-answer {
    padding: 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #555555;
    margin: 0 !important;
  }

  /* Keyframe for Native Drop Smoothness */
  @keyframes at-slide-down {
    0% {
      opacity: 0;
      transform: translateY(-8px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.footer-logo{
    max-width:180px;
    height:auto;
}

/* Floating Contact Buttons */

.floating-contact{
    position:fixed;
    left:20px;
    bottom:30px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.float-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.35s ease;
    overflow:hidden;
}

.float-btn span{
    max-width:0;
    opacity:0;
    white-space:nowrap;
    transition:.35s;
    font-size:15px;
    font-weight:600;
}

.float-btn i{
    min-width:58px;
    text-align:center;
}

.float-btn:hover{
    width:170px;
    justify-content:flex-start;
}

.float-btn:hover span{
    max-width:100px;
    opacity:1;
    padding-right:20px;
}

.call{
    background:#0d6efd;
}

.call:hover{
    background:#0b5ed7;
    color:#fff;
}

.whatsapp{
    background:#25D366;
}

.whatsapp:hover{
    background:#1ebe5d;
    color:#fff;
}

.email{
    background:#ff5722;
}

.email:hover{
    background:#e64a19;
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

.floating-contact{
    right:15px;
    bottom:20px;
}

.float-btn{
    width:52px;
    height:52px;
    font-size:20px;
}

.float-btn i{
    min-width:52px;
}

.float-btn:hover{
    width:150px;
}

}


/* Gallery Section */
.gallery-section{
    padding:80px 0;
    background:#f8f8f8;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:16px;
}

/* Gallery Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* Tablet */
@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media(max-width:576px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:250px;
}

.section-title h2{
    font-size:30px;
}

}