/*=========================
RESET
=========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins',sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;
}
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}
/*=========================
HEADER
=========================*/
/*=========================
HEADER
==========================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #9b0000;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}
.header .container {
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    width: 100%;
}
.navbar ul {
    display: flex;
    gap: 35px;
    list-style: none;
}
.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}
.navbar ul li a:hover {
    color: #ffd54f;
}
.call-btn {
    background: #fff;
    color: #9b0000;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}
.call-btn:hover {
    background: #ffd54f;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
/*=========================
Mobile
==========================*/
@media(max-width:992px) {
    .call-btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #9b0000;
        max-height: 0;
        overflow: hidden;
        transition: .4s ease;
    }
    .navbar.active {
        max-height: 500px;
    }
    .navbar ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    .navbar ul li {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .navbar ul li:last-child {
        border: none;
    }
    .navbar ul li a {
        display: block;
        padding: 18px 0;
    }
}
/*=========================
BUTTONS
=========================*/
.btn-red-h {
    background: #c40000;
    color: #fff;
    padding: 17px 22px;
    border-radius: 34px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
    line-height: 29px;
    font-size: 18px;
}
.btn-red:hover {
    background: #930000;
    transform: translateY(-3px);
}
.btn-white {
    background: #fff;
    color: #970000;
    padding: 16px 40px;
    border-radius: 40px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #970000;
    font-size: 19px;
}
.hero {
    padding-top: 114px;
    padding-bottom: 21px;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.hero-left {
    width: 50%;
}
.hero-right {
    width: 50%;
    text-align: right;
}
.hero-right img {
    max-width: 100%;
}
.badge {
    display: inline-block;
    background: #c40000;
    padding: 10px 18px;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 span {
    color: #c40000;
}
.hero p {
    font-size: 19px;
    line-height: 30px;
    color: #000;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 500;
}
.hero-btn {
    display: flex;
    gap: 20px;
}
.features {
    padding: 90px 0;
    background: #9b0000;
}
.features .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.feature-card {
    background: #b50000;
    padding: 26px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    transition: .4s;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-card i {
    font-size: 50px;
    margin-bottom: 25px;
}
.feature-card h3 {
    margin-bottom: 15px;
}
/*======================
HOW IT WORKS
======================*/
.how-work {
    padding: 110px 0;
    background: #f8f8f8;
}
.section-title {
    text-align: center;
    margin-bottom: 70px;
}
.section-title span {
    display: inline-block;
    padding: 8px 20px;
    background: #c40000;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}
.section-title h2 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 700;
}
.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 32px;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.work-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.work-card:hover {
    transform: translateY(-12px);
}
.number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #ececec;
}
.icon {
    width: 90px;
    height: 90px;
    margin: auto;
    background: #c40000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.icon i {
    font-size: 38px;
    color: white;
}
.work-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}
.work-card p {
    color: #666;
    line-height: 30px;
}
/*=========================
WHY CHOOSE US
=========================*/
.why-us {
    padding: 120px 0;
    background: #fff;
}
.why-us .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.why-left {
    width: 50%;
}
.why-right {
    width: 50%;
    position: relative;
}
.section-tag {
    display: inline-block;
    background: #b40000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}
.why-left h2 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}
.why-left p {
    color: #666;
    line-height: 32px;
    margin-bottom: 40px;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.feature-item i {
    width: 65px;
    height: 65px;
    background: #b40000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    font-size: 26px;
}
.feature-item h4 {
    margin-bottom: 6px;
    font-size: 22px;
}
.feature-item p {
    margin: 0;
    line-height: 28px;
}
.image-box {
    border-radius: 30px;
    overflow: hidden;
}
.image-box img {
    width: 100%;
    display: block;
}
.floating-card {
    position: absolute;
    background: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    animation: float 3s ease-in-out infinite;
}
.floating-card i {
    font-size: 30px;
    color: #b40000;
}
.top-card {
    top: -20px;
    left: -20px;
}
.bottom-card {
    bottom: 20px;
    right: -20px;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}
/*=========================
SERVICES
=========================*/
.services-section {
    padding: 60px 0;
    background: #f6f7fb;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}
.service-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 22px;
    transition: .35s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
        linear-gradient(
          90deg,
          #b40000,
          #ff3b30
        );
    transform: scaleX(0);
    transition: .35s;
    transform-origin: left;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background:
        linear-gradient(
          135deg,
          #b40000,
          #ff4545
        );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.service-icon i {
    font-size: 34px;
    color: #fff;
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.service-card p {
    color: #666;
    line-height: 30px;
    margin-bottom: 25px;
}
.service-card a {
    text-decoration: none;
    color: #b40000;
    font-weight: 600;
}
.service-card a i {
    margin-left: 8px;
    transition: .3s;
}
.service-card:hover a i {
    transform: translateX(6px);
}
/*=========================
STATISTICS
=========================*/
.statistics {
    padding: 50px 0;
    background:
        linear-gradient(
          135deg,
          #960000,
          #d90000
        );
}
.statistics .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.stat-box {
    text-align: center;
    color: #fff;
    padding: 45px 25px;
    background: rgba(255,255,255,.08);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    transition: .4s;
}
.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,.12);
}
.stat-box i {
    font-size: 55px;
    margin-bottom: 20px;
}
.stat-box h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.stat-box p {
    font-size: 16px;
    font-weight: 600;
    opacity: .95;
}
/*=========================
TESTIMONIALS
=========================*/
.testimonials {
    padding: 50px 0;
    background: #f7f7f7;
}
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}
.testimonial-card {
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .4s;
}
.testimonial-card:hover {
    transform: translateY(-10px);
}
.stars {
    font-size: 28px;
    color: #ffb400;
    margin-bottom: 25px;
}
.testimonial-card p {
    line-height: 32px;
    color: #666;
    margin-bottom: 25px;
}
.testimonial-card h4 {
    font-size: 22px;
    margin-bottom: 5px;
}
/*=========================
PRICING
=========================*/
.pricing-section {
    padding: 50px 0;
    background: #fff;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    text-align: center;
    position: relative;
    transition: .4s;
}
.pricing-card:hover {
    transform: translateY(-12px);
}
.featured {
    background:
        linear-gradient(
          135deg,
          #b40000,
          #e70000
        );
    color: white;
}
.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00;
    color: #111;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
}
.price {
    font-size: 55px;
    font-weight: 700;
    margin: 25px 0;
}
.pricing-card ul {
    list-style: none;
    margin: 35px 0;
}
.pricing-card li {
    padding: 12px 0;
}
.faq-section {
    padding: 50px 0;
}
.faq-item {
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.faq-question {
    width: 100%;
    padding: 25px;
    border: none;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.faq-answer {
    display: none;
    padding: 25px;
    background: #fafafa;
}
.faq-item.active .faq-answer {
    display: block;
}
.cta {
    padding: 100px 0;
    background:
        linear-gradient(
          135deg,
          #980000,
          #d60000
        );
    color: #fff;
    text-align: center;
}
.cta h2 {
    font-size: 52px;
    margin-bottom: 20px;
}
.cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 32px;
}
.footer {
    background: #111;
    color: white;
    padding: 45px 0 8px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 24px;
}
.footer-logo {
    width: 70%;
    margin-bottom: 4px;
}
.footer h3 {
    margin-bottom: 25px;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}
.footer a:hover {
    color: #fff;
}
.social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}
.social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #b40000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright {
    padding-top: 13px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #b40000;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(180,0,0,.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(180,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(180,0,0,0);
    }
}
#topBtn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    display: none;
    align-items: center;
    justify-content: center;
    background: #111;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}
.page-banner {
    padding: 180px 0 100px;
    background:
        linear-gradient(
          135deg,
          #a50000,
          #d90000
        );
    color: white;
    text-align: center;
}
.about-company {
    padding: 120px 0;
}
.about-company .container {
    display: flex;
    gap: 70px;
    align-items: center;
}
.about-image {
    width: 50%;
}
.about-image img {
    border-radius: 25px;
    margin: 0px auto;
    display: block;
}
.about-content {
    width: 50%;
}
.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}
.mission {
    padding: 100px 0;
    background: #f7f7f7;
}
.mission .container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.mission-card {
    padding: 45px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.team {
    padding: 120px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}
.team-card {
    text-align: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}
.team-card img {
    width: 100%;
}
.team-card h3 {
    margin-top: 25px;
}
/*=========================
SERVICES SECTION
=========================*/
.services-page {
    padding: 48px 0;
    background: #f8f9fc;
    position: relative;
}
.services-page::before {
       content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 234px;
    /* background: linear-gradient(135deg, #b40000, #d80000); */
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 0;
}
.services-page .container {
    position: relative;
    z-index: 1;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
    gap: 35px;
    margin-top: 60px;
}
.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 0;
    background: #b40000;
    transition: .4s;
}
.service-card:hover::before {
    height: 100%;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}
.service-icon {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    background:
        linear-gradient(
          135deg,
          #b40000,
          #ff4040
        );
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: .4s;
}
.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.08);
}
.service-icon i {
    font-size: 36px;
    color: #fff;
}
.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #222;
}
.service-card p {
    color: #666;
    line-height: 30px;
    margin-bottom: 25px;
}
.service-card a {
    color: #b40000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.service-card a i {
    transition: .3s;
}
.service-card:hover a i {
    transform: translateX(8px);
}
/*=========================
PROCESS
=========================*/
.service-process {
    padding: 120px 0;
    background: #fff;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.process-card {
    background: #fafafa;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
}
.process-card:hover {
    background: #b40000;
    color: #fff;
}
.process-card span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b40000;
    color: #fff;
    margin: auto;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.process-card:hover span {
    background: #fff;
    color: #b40000;
}
.process-card p {
    margin-top: 15px;
    line-height: 28px;
}
/*=========================
SERVICE FAQ
=========================*/
.service-faq {
    padding: 120px 0;
    background: #f8f9fc;
}
.service-faq .faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.service-faq .faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 25px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
}
.service-faq .faq-question::after {
    content: "+";
    position: absolute;
    right: 30px;
    font-size: 28px;
}
.service-faq .faq-item.active .faq-question::after {
    content: "−";
}
.service-faq .faq-answer {
    display: none;
    padding: 0 25px 25px;
    color: #666;
    line-height: 30px;
}
.service-faq .faq-item.active .faq-answer {
    display: block;
}
/*============================
WHY SERVICES
============================*/
.services-why {
    padding: 48px 0;
    background: white;
}
.services-why .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.services-why .left {
    width: 50%;
}
.services-why .right {
    width: 50%;
    text-align: right;
}
.services-why img {
    max-width: 100%;
    border-radius: 25px;
   /* box-shadow: 0 25px 60px rgba(0,0,0,.12);*/
}
.tag {
    display: inline-block;
    background: #b40000;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}
.services-why h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}
.services-why p {
    line-height: 30px;
    color: #666;
}
.points {
    margin: 40px 0;
}
.point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.point .icon {
    width: 70px;
    height: 70px;
    background: #b40000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    flex-shrink: 0;
}
.point h4 {
    font-size: 22px;
    margin-bottom: 8px;
}
/*=========================
PAGE BANNER
=========================*/
.page-banner {
    padding: 170px 0 90px;
    background:
        linear-gradient(
          135deg,
          #970000,
          #d60000
        );
    color: #fff;
    text-align: center;
}
.page-banner h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-banner p {
    font-size: 18px;
    opacity: .9;
}
/*=========================
CONTACT INFO
=========================*/
.contact-info {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}
.contact-info .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.info-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
}
.info-card:hover {
    transform: translateY(-10px);
}
.info-card i {
    width: 75px;
    height: 75px;
    background: #b40000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 20px;
}
.info-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}
.info-card p {
    color: #666;
}
/*=========================
CONTACT SECTION
=========================*/
.contact-section {
    padding: 100px 0;
}
.contact-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.contact-left {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.contact-left h2 {
    font-size: 42px;
    margin: 15px 0;
}
.contact-left p {
    color: #666;
    margin-bottom: 35px;
}
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-left input, .contact-left textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    transition: .3s;
    font-size: 15px;
}
.contact-left input:focus, .contact-left textarea:focus {
    border-color: #b40000;
}
.contact-left textarea {
    resize: vertical;
    margin-bottom: 25px;
}
/*=========================
RIGHT BOX
=========================*/
.contact-box {
    background: #b40000;
    color: white;
    padding: 40px;
    border-radius: 25px;
    position: sticky;
    top: 120px;
}
.contact-box h3 {
    margin-bottom: 25px;
    font-size: 30px;
}
.contact-box ul {
    list-style: none;
}
.contact-box li {
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
}
.contact-box i {
    color: #ffcf33;
}
/*=========================
MAP
=========================*/
.map-section iframe {
    display: block;
    width: 100%;
    border: 0;
}
/*=========================
BUTTON
=========================*/
.btn-red {
    background: #b40000;
    color: #fff;
    padding: 16px 35px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;font-weight:600;
    transition: .3s;text-decoration: none;
}
.btn-red:hover {
    background: #870000;
    transform: translateY(-3px);
}
/*=========================
RESPONSIVE
=========================*/
@media(max-width:992px) {
    .contact-info .container {
        grid-template-columns: repeat(2,1fr);
    }
    .contact-section .container {
        grid-template-columns: 1fr;
    }
    .contact-box {
        position: relative;
        top: 0;
    }
}
@media(max-width:768px) {
    .page-banner h1 {
        font-size: 38px;
    }
    .contact-info .container {
        grid-template-columns: 1fr;
    }
    .row {
        grid-template-columns: 1fr;
    }
    .contact-left {
        padding: 30px;
    }
    .contact-left h2 {
        font-size: 32px;
    }
}