@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body::-webkit-scrollbar {
  width: 8px; /* optional: make scrollbar thinner */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
}

ul li,
ol li {
    font-family: "Montserrat", sans-serif;
    padding: 0px;
    margin: 0px;
}

img {
    width: 100%;
    height: auto;
}

.bg-1 {
    background-color: #a76e39;
}

.bg-2 {
    background-color: #3e4095;
}

.bg-3 {
    background-color: #f5f5f5;
}

.bg-4 {
    background-color: #000000;
}

.bg-5 {
    background-color: #ffffff;
}

.w-100 {
    width: 100%;
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Basic grid system */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.d-block {
    display: block;
}

.p-0 {
    padding: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.m-0 {
    margin: 0px;
}

.com-padd {
    padding: 50px 0px;
}

img.border-cre {
    border-radius: 999px 999px 0 0;
}

.main-btn {
    padding-top: 30px;
    ;
}

.cta-button {
    background-color: #a76e39;
    color: #ffffff;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

a.cta-button {
    text-decoration: none;
}

ul.social-links {
    display: flex;
    align-items: center;
    justify-content: end;
}

ul.social-links li {
    list-style: none;
    margin: 0px 5px;
    background-color: #151a40;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.social-links li:last-child {
    margin-right: 0px;
}

ul.social-links li a {
    color: #ffffff;
}

/* Header */

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Each icon spacing */
/* .social-links li a {
  color: #000;
  font-size: 18px;
  display: inline-block;
} */

/* Center on mobile */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
    margin-top: 10px;
  }

  .top-bar .col-5.right {
    display: flex;
    justify-content: center;
  }

  .top-bar .col-7 {
    text-align: center;
  }
  .blog-page-section .row{
    row-gap: 20px;
  }
}


.top-bar {
    background-color: #ffffff;
    color: #151a40;
    padding: 5px 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.top-bar .row {
    align-items: center;
    text-align: left;
}

.top-bar p {
    font-size: 13px;
}

.top-bar .right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.top-bar .call-us {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    border-right: 1px solid #ffffff;
    margin-right: 10px;
}

.top-bar .call-us span.call {
    padding-right: 10px;
}

.top-bar .call-us a {
    color: black;
    text-decoration: none;
}

a.w-chat {
    background-color: #25d366;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 16px;
    text-decoration: none;
}


.header {
    /*position: sticky;*/
    /*top: 0;*/
    /*background-color: #151a40;*/
    /*padding: 5px 0px;*/
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    /*z-index: 1000;*/
    position: relative;
    width: 100%;
    z-index: 999;
    padding: 5px 0px;
    transition: all 0.3s ease;
    background-color: #151a40;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #151a40;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    width: auto;
    height: 66px;
    display: block;
}

.header .menu {
    display: flex;
    gap: 40px;
}

.header .menu a {
    text-decoration: none;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.header .menu a:hover {
    color: #c7ae85;
}

.header .menu a.active {
    color: #c7ae85;
    font-weight: 600;
}

.header .cta-button {
    background-color: #a76e39;
    color: #16371a;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fefefe;
}

a.cta-button {
    text-decoration: none;
}

/* Dropdown Styling */
.menu .dropdown {
    position: relative;
    display: inline-block;
}

.menu .dropdown::after {
    content: "\f054";
    font-family: "FontAwesome";
    position: absolute;
    right: -15px;
    color: #ffffff;
    transform: rotate(90deg);
    top: 3px;
    font-size: 12px;
}

.menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 230px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.menu ul.dropdown-menu li {
    list-style: none;
}

.menu .dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu .dropdown-menu a:hover {
    background-color: #e9e7d8;
}

.menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* Off-Canvas Dropdown */
.off-canvas .dropdown {
    position: relative;
    display: block;
}

.off-canvas .dropdown-menu {
    display: none;
    position: relative;
    background-color: #e1c16f;
    min-width: 100%;
    box-shadow: none;
    padding-left: 0px;
}

.off-canvas .dropdown:hover .dropdown-menu {
    display: block;
    color: #0b5cb3;
}

.off-canvas {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #151a40;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s;
    padding: 20px;
    z-index: 9999;
}

.off-canvas.open {
    right: 0;
}

.off-canvas .close-btn {
    cursor: pointer;
    float: right;
    font-size: 24px;
    color: #ffffff;
}

.off-canvas .menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.off-canvas .menu a {
    text-decoration: none;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* main-heading */

.main-heading h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.main-heading h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #151a40;
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.main-heading h4::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #151a40;
    margin: 8px 0px;
    left: 0;
    display: inline-block;
    position: absolute;
    border-radius: 100%;
    top: -3px;
}





.hero-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slider .slick-slide {
    line-height: 0px;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    position: absolute;
    right: 14px;
    background: none;
    width: 30px;
    height: 30px;
    bottom: 0;
    top: auto;
}

.hero-slider .slick-prev {
    right: 50px;
    left: auto;
    z-index: 99;
}

.hero-slider .slick-next:before {
    content: '→';
    background-color: #16371a;
    padding: 0px;
    font-size: 35px;
    border-radius: 50%;
}

.hero-slider .slick-prev:before {
    content: '←';
    background-color: #16371a;
    padding: 0px;
    font-size: 36px;
    border-radius: 50%;
}

/* Form */

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    font-family: "Montserrat", sans-serif;
}

.form-group input[type="radio"],
.form-group input[type="checkbox"] {
    width: auto;
    font-family: "Montserrat", sans-serif;
}

/* Submit Button */
button[type="submit"] {
    padding: 10px 20px;
    background-color: #151a40;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #a76e39;
}

.thank-you {
    text-align: center;
}

.thank-you h2 {
    font-size: 30px;
    padding-bottom: 10px;
}

.thank-you p {
    font-size: 20px;
    padding-bottom: 30px;
}

/* slick slider */


.hero h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    padding: 10px 0px;
    color: #151a40;
}

/* breadcrumb */

.breadcrumb {
    background-image: url(../img/bg-1.jpg);
    padding: 80px 0px;
    position: relative;
    background-size: cover;
    width: 100%;
    background-position: center bottom;
}

.breadcrumb h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    color: #ffffff;
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

/* About */

.about-us::before {
    content: "";
    background-color: transparent;
}

.about-us .row {
    align-items: center;
}

.about-us img {
    width: 100%;
    height: auto;
    display: block;
}

img.about-us-inner-img {
    border-radius: 50%;
}

.about-us p {
    font-size: 16px;
}

.about-us p+p {
    padding-top: 15px;
}

.miss-sec .text-area {
    color: #ffffff;
    padding: 20px;
}

.miss-sec .text-area h4 {
    font-size: 25px;
    padding-bottom: 10px;
}

/* founder-sec */

.founder-sec h4 {
    color: #3e4095;
    font-size: 30px;
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.founder-sec h6 {
    color: #a76e39;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.founder-sec p {
    padding-top: 20px;
}

/* Services */

.services-home .row {
    align-items: center;
}


.services .main-heading h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 28px;
}

.services h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #a76e39;
    padding-bottom: 10px;
    padding-top: 15px;
}

.services a {
    text-decoration: none;
    color: #a76e39;
    font-weight: bold;
}

.services-home a.service-link {
    padding-top: 60px;
    display: block;
    text-decoration: none;
}

.services .video-container {
    margin-top: 15px;
}


.services-inner ul li {
    list-style: none;
    padding-bottom: 5px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.services-inner ul li::before {
    content: "\f192";
    color: #16371a;
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
}

.services-inner ul li:last-child {
    padding-bottom: 0px;
}

.services .types-slider {
    padding: 15px;
    width: 100%;
}

.services .types-slider div {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.services-box {
    position: relative;
    height: 100%;
}

.services-box img {
    display: block;
}

.specification {
    align-items: center;
    justify-content: center;
}

.specification h3 {
    padding-bottom: 10px;
}



.services-box .content {
    background-color: #151a40;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}


.services-box .heading-area h4 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    padding-bottom: 10px;
    padding-top: 10px;
}


.services-box .heading-area p {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    padding-bottom: 15px;
}

.service-link .services-box .heading-area span.read-more {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 8px 12px;
    background-color: #a76e39;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
}

.icon-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Ensures even spacing */
    gap: 20px;
    /* Space between items */
    padding: 20px 0px;
}

.item {
    flex: 1 1 calc(25% - 20px);
    /* Makes each item take up 25% of the container width */
    text-align: center;
}

.icon-list .icon img {
    width: 80px;
    /* Adjust size as needed */
    height: auto;
}

.icon-list h5 {
    margin-top: 0px;
    font-size: 16px;
    color: #a76e39;
}

.videos-services h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #16371a;
    padding-bottom: 20px;
    text-align: center;
}

.seo-text {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;

    text-align: center;
    padding: 10px;
    margin: 20px 0px;
}

.seo-text h2 {
    font-size: 20px;
    font-weight: 500;
}

.seo-text a.w-chat i {
    padding-right: 10px;
}

.seo-text a.w-chat {
    background-color: #25d366;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    margin-top: 12px;
    line-height: 15px;
}

@media (max-width: 767px) {
  .seo-text {
    display: none !important;
  }
}


.form-sec {
    padding: 30px 0px;
    margin: 20px 0px;
}

/* Services End */

/* why choose */

.why-choose {
    padding-top: 30px;
}

.why-choose-box {
    text-align: center;
}

.why-choose-box .icon-box {
    background-color: #a76e39;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why-choose-box .icon-box img {
    width: 80px;
    height: 80px;
}

.why-choose-box .heading-area h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    padding: 10px 0px;
    color: #3e4095;
}

.why-choose-box .heading-area p {
    font-size: 15px;
}

.iso-text h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: #ffffff;
    padding: 10px 0px;
    text-align: center;
}

/* why choose end */

/* clients */

.clients-slider {
    display: flex;
    padding-top: 20px;
}

.clients-slider .item {
    -webkit-box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    transition: transform 0.3sease, box-shadow 0.3sease;
}

.clients-slider img {
    width: 100%;
    height: auto;
}

.clients-slider .slick-slide {
    margin: 0 10px;
    /* Adjust the value for spacing */
}

.clients-slider .slick-list {
    margin: 0 -10px;
    /* To prevent overflow issues */
}

/* clients end */

/* call-action */

/* call-action */

.call-action {
    padding: 90px 0;
    text-align: center;
    background-image: url(../img/bg-1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.call-action .row {
    align-items: center;
    justify-content: center;
}

/* Heading */
.call-action h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 10px;
    text-transform: uppercase;
}

/* Paragraph */
.call-action p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Button styling */
.call-action .button {
    background-color: #a76e39;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-left: 20px;
}

/* Hover animation */
.call-action .button:hover {
    background-color: #3e4095;
    transform: scale(1.05);
}

/* Click/active effect */
.call-action .button:active {
    transform: scale(0.98);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .call-action {
        padding: 60px 20px;
        text-align: center;
        background-attachment: scroll; /* Prevent janky fixed bg on mobile */
    }

    .call-action h3 {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .call-action p {
        font-size: 16px;
    }

    .call-action .button {
        display: inline-block;
        margin: 10px 0 0;
        font-size: 18px;
        padding: 10px 20px;
        margin-left: 0;
    }
}



/* call-action end */

/* gallery */

.gallery .col-3 {
    padding-top: 20px;
}


.gallery .col-4 {
    padding-top: 20px;
}

.gallery p.caption {
    background-color: #b09229;
    color: #ffffff;
    text-align: center;
    padding: 5px 0px;
    font-size: 16px;
    font-weight: 700;
}

/* Testimonials */

.testimonials {
    background-image: url(../img/slider/12.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
}

.testimonials-bg {
    background-color: #f5f5f5;
    padding: 30px;
    width: 100%;
    flex: 0 0 100%; /* Override Bootstrap col-7 width */
    max-width: 100%;
}


.testimonials-box {
    background-color: #3e4095;
    padding: 30px;
    position: relative;
    height: 100%;
}

/*.testimonials-box::before {*/
/*    content: "";*/
/*    background-image: url(../img/quotes.png);*/
/*    width: 64px;*/
/*    height: 64px;*/
/*    position: absolute;*/
/*    top: -35px;*/
/*    left: 10px;*/
/*}*/

.testimonials-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    padding-top: 12px;
    height: 100%;
}

.testimonials-box h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-align: right;
    padding-bottom: 20px;

}

.testimonials-slider .slick-slide {
    margin: 0 10px;
    /* Adjust the value for spacing */
}

.testimonials-slider .slick-list {
    margin: 0 -10px;
    /* To prevent overflow issues */
}

/* FAQ's */

.main-heading-center h3 {
    text-align: center;
    font-size: 30px;
    color: #a76e39;
}

.ab_accordion {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.ab_accordion_content {
    display: none;
}

.ab_accordion_header {
    cursor: pointer;
    background-color:
        #ffffff;
    padding: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    margin-top: 10px;
    border-radius: 3px;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.ab_accordion_header.active {
    background-color:
        #3e4095;
    color:
        #fff;
}

.ab_accordion_content {
    padding: 12px;
    animation: fade-in-up 0.3s ease-in-out;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.ab_accordion_header i {
    float: right;
    font-size: 14px;
    margin-top: 2px;
    position: absolute;
    right: 15px;
    top: 13px;
}

.ab_accordion_header.active i {
    transform: rotate(180deg);
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* side menu */

.side-menu {
    background-color: #f5f5f5;
}

.side-menu h4 {
    background-color: #3e4095;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    padding: 15px 20px;
    font-weight: 800;
}

.side-menu ul {
    padding: 20px 20px;
}

.side-menu ul li {
    list-style: none;
    padding-bottom: 20px;
}

.side-menu ul li:last-child {
    padding-bottom: 0px;
}

.side-menu ul li a {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

.side-menu ul li a:hover {
    color: #a76e39;
}

.side-menu ul li a.active {
    color: #a76e39;
}

.side-menu ul li a.active:after {
    content: "➤";
    left: 6px;
    position: relative;
    top: 1px;
}

/* advantages */

.advantages {
    padding: 30px;
    margin: 30px 0px;
}

.advantages h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #16371a;
    padding-bottom: 20px;
}

.advantages ul li {
    list-style: none;
    padding-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.advantages ul li::before {
    content: "\f192";
    color: #16371a;
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
}

.advantages ul li:last-child {
    padding-bottom: 0px;
}

/* Blogs */

a.blog-card {
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

a.blog-card .blog-archive-content {
    background-color: #3e4095;
    color: #ffffff;
    padding: 20px 20px;
}

a.blog-card .blog-archive-content h3 {
    font-family: "Montserrat", sans-serif;
}

a.blog-card .blog-archive-content p {
    padding: 15px 0px;
}

a.blog-card .blog-archive-content span {
    background-color: #a76e39;
    color: #ffffff;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fefefe;
    display: inline-block;
}



/* Contact us */

.contact-us h4 {
    font-size: 25px;
    padding-bottom: 20px;
}

.contact-us h6 {
    font-size: 18px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.contact-us span {
    margin-bottom: 20px;
    display: block;
}

.contact-us span a {
    color: #a76e39;
    font-weight: bold;
}

.contact-us li {
    list-style: none;
    position: relative;
    padding-bottom: 45px;
    padding-left: 60px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.contact-us li::before {
    content: "";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    width: 45px;
    height: 45px;
    background-color: #e1c16e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;
    color: #17371a;
}

.contact-us li:nth-child(1) {
    padding-bottom: 35px;
}

.contact-us li:nth-child(1)::before {
    content: "\f3c5";
}

.contact-us li:nth-child(2)::before {
    content: "\f3ce";
}

.contact-us li:nth-child(3)::before {
    content: "\f0e0";
}

.services-inner-page h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #17371a;
    padding-bottom: 15px;
    padding-top: 15px;
}

.services-inner-page p.p2 {
    padding-bottom: 10px;
}

.services-inner-page p span {
    color: #d29c36;
}

.form-services {
    border: 2px solid #17371a;
    padding: 20px;
    margin-top: 30px;
}

.form-services h3 {
    padding-bottom: 20px;
}

.recaptcha-container {
    transform: scale(0.8);
    /* Adjust scale as needed */
    transform-origin: 0 0;
    /* Keeps it aligned to the top-left */
    -webkit-transform-origin: 0 0;
}

.map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Make the iframe responsive */
.map iframe {
  width: 100%;
  max-width: 600px;
  height: 350px;
  border: 0;
}

/* Optional: Reduce height on small screens */
@media (max-width: 768px) {
  .map iframe {
    height: 250px;
  }
}

.recaptcha-container iframe {
    max-width: 100% !important;
    /* Ensures it doesn't overflow */
    height: auto !important;
}

.call-us-toady {
    text-align: center;
    padding: 20px 12px;
    margin-top: 20px;
}

.call-us-toady h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #17371a;
    padding-bottom: 15px;
}

.call-us-toady p {
    line-height: 1.6;
}

.call-us-toady p a {
    color: #17371a;
    font-weight: bold;
    font-size: 20px;
}

.faq-form {
    margin-bottom: 30px;
}

.faq-form h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 15px;
}

.faq-form .ab_accordion {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.faq-form .ab_accordion_content {
    display: none;
}

.faq-form .ab_accordion_header {
    cursor: pointer;
    background-color:
        #ffffff;
    padding: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    margin-top: 10px;
    border-radius: 3px;
    font-family: "Montserrat", sans-serif;
}

.faq-form .ab_accordion_header.active {
    background-color:
        #e1c16e;
    color:
        #17371a;
}

.faq-form .ab_accordion_content {
    padding: 12px;
    animation: fade-in-up 0.3s ease-in-out;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px 10px;
}

.faq-form .ab_accordion_header {
    cursor: pointer;
    background-color: #e1c16e;
    padding: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    margin-top: 10px;
    border-radius: 3px;
    color: #17371a;
    font-family: "Montserrat", sans-serif;
}

.faq-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #e1c16e;
    color: #17371a;
    font-weight: 600;
}

/* Footer */

footer {
    background-color: #151a40;
    padding: 40px 0px 0px 0px;
}

.footer-heading {
    padding-bottom: 20px;
}

.footer-heading h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-heading h4::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #a76e39;
    margin: 8px 0px;
}

.footer-icons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.footer-icons a {
    width: 40px;
    height: 40px;
    background-color: #a76e39;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.footer-icons a:hover {
    background-color: #ffffff;
    color: #a76e39;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

footer img {
    width: 100%;
    height: auto;
}

footer p {
    font-size: 15px;
    color: #ffffff;
}

footer ul.quick-link li {
    list-style: none;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

footer ul.quick-link li::before {
    content: "\f054";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    color: #a76e39;
}

footer ul.quick-link li:last-child {
    padding-bottom: 0px;
}

footer ul.quick-link li a {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-decoration: none;
}

.contact-us-footer li {
    list-style: none;
    position: relative;
    padding-bottom: 30px;
    padding-left: 45px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
}

.contact-us-footer li::before {
    content: "";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    width: 40px;
    height: 40px;
    background-color: #a76e39;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
}

.contact-us-footer li:nth-child(1) {
    padding-bottom: 15px;
}

.contact-us-footer li:nth-child(1)::before {
    content: "\f3c5";
    top: 0;
}

.contact-us-footer li:nth-child(2)::before {
    content: "\f3ce";
}

.contact-us-footer li:nth-child(3)::before {
    content: "\f0e0";
}

footer .footer-bottom {
    padding: 10px 0px;
    margin-top: 30px;
}

footer .footer-bottom p {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

footer ul.social-links {
    display: flex;
    align-items: center;
    justify-content: start;
}

footer ul.social-links li a {
    color: #a76e39;
}

p.copy-right {
    text-align: left;
}

p.devlop {
    text-align: right;
}

.follow-us,
.social {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.follow-us .trustpilot {
    display: flex;
    align-items: center;
}

.follow-us .trustpilot span {
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    padding-right: 10px;
}

.follow-us .trustpilot {
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    padding-right: 10px;
}

.social span {
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    padding-right: 10px;
}


.seo-links {
    padding-top: 20px;
}

.seo-links .heading h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.seo-links .heading h4::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #a66d38;
    margin: 0 auto;
    margin-top: 10px;
}

.seo-links li {
    list-style: none;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.seo-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.seo-links li::before {
    content: "\f054";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    color: #a66d38;
}

.seo-links li:last-child {
    padding-bottom: 0px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.my-float {
    margin-top: 16px;
}

.mobile-quick {
    display: none;
}

.videos .col-4+.col-4 {
    padding-top: 20px;
}

/* pm-------------------------css */
/* images-page on home */

.soultion{
    background-color: #f9f9f9;

}
.image-gallery {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.image-gallery .section-title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #a76e39;
    line-height: 28px
}

.image-gallery .section-title p {
    color: #555;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Behavior */
@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;

    }
}

/* video-on-home */

.video-gallery {
    padding: 60px 0;
    background-color: #f3f3f3;
    text-align: center;
}

.video-gallery .section-title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #a76e39;
    line-height: 28px
}

.video-gallery .section-title p {
    color: #555;
    margin-bottom: 30px;
}

.video-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
    padding: 0 20px;
}

.video-gallery .gallery-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .video-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .video-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* blog-section-on-home */
.blog-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.blog-section .section-title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #a76e39;
    line-height: 28px
}

.blog-section .section-title p {
    color: #555;
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
    background-color: #151a40;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #a76e39;
}

.blog-content p {
    font-size: 14px;
    color: white;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background-color: #a76e39;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more i {
    margin-left: 6px;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

h2 {
    text-align: center;
    padding: 20px;
}

/* image-page */
.image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* our-client */
.slick-slide1 {
    margin: 0px 20px;
}

.slick-slide1 img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide1 {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide1 {
    float: right;
}

.slick-slide1 img {
    display: block;
}

.slick-slide1.slick-loading img {
    display: none;
}

.slick-slide1.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide1 {
    display: block;
}

.slick-loading .slick-slide1 {
    visibility: hidden;
}

.slick-vertical .slick-slide1 {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.clients-section {
    background-color: #f3f3f3;
    padding: 60px 0;
    text-align: center;
}

.section-title h2 {

    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    line-height: 28px
}

.section-title p {
    margin-bottom: 40px;
}

.customer-logos .slide1 {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logos img {
    width: 100%;
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;

}

.customer-logos img:hover {
    transform: scale(1.1);

}

/* realated-search */
.related-search-inline {
    background-color: #f9f9ff;
    /* very light background */
    padding: 30px 0;
    font-size: 16px;
}

.related-search-inline strong {
    color: #000;
    font-weight: bold;
    margin-right: 8px;
}

.related-search-inline a {
    color: #137ae2;
    text-decoration: none;
    margin: 0 5px;
}

.related-search-inline a:hover {
    color: #0b5cb3;
}

/* NEW-PAGES */
.info-flex-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.info-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
}


.info-left {
    flex: 0 0 65%;
}

.info-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    max-width: 1000px;
    /* Center the paragraph */
    text-align: justify;
    padding: 0 15px;
}

.info-right-form {
    flex: 0 0 33%;
    background-color: #a76e39;
    padding: 25px;
    /* border-radius: 6px; */
    color: #fff;
}

.info-right-form h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.info-right-form input,
.info-right-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
}

.info-right-form button {
    background-color: #1c2b5e;
    color: #fff;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 20px;
    /* border-radius: 8px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
}



/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .info-flex-container {
        flex-direction: column;
    }

    .info-left,
    .info-right-form {
        flex: 0 0 100%;
    }

    .info-right-form {
        margin-top: 30px;
    }
}

.all-about.section-7 {
    background-color: #f8f8f8;
    /* Light neutral background */
    padding: 60px 0;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.all-about.section-7 .section-title h4 {
    font-size: 28px;
    font-weight: 600;
    color: #1c2b5e;
    /* Dark blue for title */
    text-align: center;
    margin-bottom: 25px;
}

.all-about.section-7 p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    max-width: 1000px;
    margin: 0 auto;
    /* Center the paragraph */
    text-align: justify;
    padding: 0 15px;
}

.all-about.section-7 {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Mobile responsiveness */
@media only screen and (max-width: 768px) {

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
    }

    .d-none {
        display: none;
    }

    .order-1 {
        order: 1;
    }

    .order-2 {
        order: 2;
    }

    .pb-0 {
        padding-bottom: 0px !important;
    }

    .pb-10 {
        padding-bottom: 10px;
    }

    .breadcrumb h1 {
        font-size: 20px;
    }

    ul.social-links {
        justify-content: center;
        padding-top: 10px;
    }

    .header .cta-button {
        display: none;
    }

    .header .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #e1c16f;
    }

    .form-group {
        flex-direction: row;
        align-items: center;
    }

    .form-group label {
        width: 30%;
        margin-bottom: 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
    }

    .services .col-3+.col-3 {
        padding-top: 35px;
    }

    .why-choose-box .heading-area h4+p {
        padding-bottom: 20px;
    }

    .call-action h3 span {
        display: block;
        margin-top: 20px;
    }

    .call-action .button {
        font-size: 16px;
        margin-left: 0px;
    }

    .gallery .col-3+.col-3 {
        padding-top: 20px;
    }


    .videos .col-4+.col-4 {
        padding-top: 20px;
    }

    .videos-services .col-6+.col-6 {
        padding-top: 20px;
    }

    .faq-form {
        padding: 10px 0px;
    }

    .faq-form h2 {
        padding-top: 20px;
        font-size: 20px;
    }

    .faq-form .ab_accordion_header {
        font-size: 15px;
    }

    .testimonials-slider .slick-list {
        overflow: hidden;
    }


    /*.testimonials-box::before {*/
    /*    content: "";*/
    /*    background-image: url(../img/quotes.png);*/
    /*    width: 40px;*/
    /*    height: 40px;*/
    /*    position: absolute;*/
    /*    left: 10px;*/
    /*    top: 2px;*/
    /*    background-size: cover;*/
    /*}*/

    .top-bar {
        padding: 10px 0px;
    }

    footer {
        padding-top: 10px;
    }

    .footer-heading {
        padding-top: 22px;
        padding-bottom: 10px;
    }

    p.copy-right {
        text-align: center;
    }

    p.devlop {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .float {
        display: none;
    }

    .mobile-quick {
        display: block;
        z-index: 999;
        position: absolute;
    }

    .mobile-quick ul {
        padding: 0px;
        margin: 0px;
        display: flex;
        width: 100%;
        position: fixed;
        bottom: 0px;
    }

    .mobile-quick li {
        width: 50%;
        color: #ffffff;
        padding: 6px;
        font-size: 18px;
        list-style: none;
        text-align: center;
    }

    .mobile-quick li:first-child {
        background-color: #34b7f1;
    }

    .mobile-quick li:last-child {
        background-color: #25d366;
    }

    .mobile-quick li a {
        color: #ffffff;
        text-decoration: none;
    }
}


.royal-container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 10px 5px;
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Section Titles */
.section-title1 {
    font-size: 24px;
    color: #a76e39;
    margin-bottom: 20px;
    border-left: 5px solid #a76e39;
    padding-left: 15px;
}

.royal-section {
    margin-bottom: 40px;
}

/* Subheadings */
.royal-subheading {
    font-weight: bold;
    margin-top: 15px;
    color: #1c2b5e;
}

/* Icon bullets - no emojis */
.royal-icon-bullet {
    margin-top: 10px;
    margin-left: 10px;
}

/* Benefit bullets - no emojis */
.royal-benefit {
    margin-bottom: 10px;
}

/* Process Steps - no emojis */
.royal-process-step {
    margin-bottom: 10px;
}


.royal-flex {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.royal-text {
    flex: 1;
    min-width: 300px;
}

.royal-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.royal-image img {
    max-width: 475px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.faq-form-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
  /* background-color: #f1f1f1; Light grey background */
  padding: 30px;
  border-radius: 10px;
}

.faq-left {
  flex: 2;
  min-width: 300px;
}

.faq-right {
  flex: 1;
  min-width: 280px;
  background: #ffffff; /* White background to contrast inside grey */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


/* seo page call of action  */


.cta-seo-section {
    padding: 90px 0px;
    text-align: center;
    background-image: url(../img/bg-1.jpg); /* same as call-action */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-seo-section .row {
    align-items: center;
    justify-content: center;
}

/* Heading */
.cta-seo-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    color: #ffffff;
    text-align: left;
    padding-bottom: 20px;
    text-transform: uppercase;
}

/* List */
.cta-seo-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.cta-seo-list li {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-seo-list li a {
    color: white;
    text-decoration: none;
}

.cta-seo-list li a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Button Styling */
.cta-seo-button {
    background-color: #a76e39;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* Hover Effect */
.cta-seo-button:hover {
    background-color: #3e4095;
    transform: scale(1.05);
}

/* Click Effect */
.cta-seo-button:active {
    transform: scale(0.98);
}

/* Responsive Adjustment for Small Screens */
@media (max-width: 768px) {
    .cta-seo-heading,
    .cta-seo-list {
        text-align: center;
    }

    .cta-seo-button {
        margin-top: 30px;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* Base style for responsiveness (already has flex) */
.specification {
  display: flex;
  flex-wrap: wrap;
}

/* Ensure each child respects the defined max-widths */
.specification .col-6 {
  box-sizing: border-box;
  padding: 10px;
}

/* Make iframe responsive within fixed height */
.specification .video-column iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .specification {
    flex-direction: column;
  }

  .specification .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .specification .video-column {
    height: 185px !important; /* Reduced height for mobile */
    margin-bottom: 20px;
  }

  .form-column {
    margin-top: 0 !important;
  }
}


/* video page  */

.video-container {
    width: 100%;
    height: 225px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* blog page start  */
.blog-page-section {
  padding: 60px 15px;
  background-color: #f9f9f9;
}

.blog-heading {
  text-align: center;
  
  margin-bottom: 40px;
  color: #1c2b5c;
  font-family: "Montserrat", sans-serif;
}

.blog-card {
  background-color: #f4f4f4;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #2b501f;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}

.blog-desc {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-btn {
  display: inline-block;
  background-color: #d1a542;
  color: #1c2b5c;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
  font-family: "Montserrat", sans-serif;
}

.blog-btn:hover {
  background-color: #3e4095;
  color: #fff;
}
/* blog page end */

/* single blog page  */

.royal-banner-image {
  text-align: center;
  margin-bottom: 30px;
}

.royal-banner-image img {
  width: 100%;
  height: auto;
  max-height: 700px; /* Desktop height */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .royal-banner-image img {
    max-height: 350px; /* Reduced height for mobile */
  }
}

/* single blog page end */
