header {
    position: absolute;
    top     : 0;
    left    : 0;
    width   : 100%;
    z-index : 999
}

header .top-header {
    background-color: #000;
    color           : #fff
}

header .top-header .main-top-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 5px 0px
}

header .top-header .main-top-header ul {
    display    : flex;
    align-items: center;
    gap        : 20px
}

header .top-header .main-top-header ul a {
    color: #fff
}

@media(max-width: 450px) {
    header .top-header .main-top-header ul {
        flex-direction: column;
        align-items   : start;
        gap           : 5px
    }
}

header .top-header .main-top-header .right img {
    width  : 28px;
    display: flex
}

@media(max-width: 768px) {
    header .top-header .main-top-header .right {
        display: none
    }
}

header .bottom-header {
    background: rgba(0, 0, 0, .3294117647)
}

header .bottom-header .main-bottom-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 15px 0px
}

header .bottom-header .main-bottom-header .logo img {
    width: 190px
}

@media(max-width: 768px) {
    header .bottom-header .main-bottom-header .logo a {
        display: flex
    }

    header .bottom-header .main-bottom-header .logo img {
        width: 140px
    }
}

header .bottom-header .main-bottom-header .toggle-icon {
    display       : none;
    flex-direction: column;
    gap           : 10px;
    cursor        : pointer
}

header .bottom-header .main-bottom-header .toggle-icon span {
    width        : 50px;
    height       : 4px;
    background   : #fff;
    border-radius: 5px;
    transition   : all .3s ease
}

header .bottom-header .main-bottom-header .toggle-icon span:nth-child(2) {
    width: 35px
}

header .bottom-header .main-bottom-header .toggle-icon span:nth-child(3) {
    width: 50px
}

header .bottom-header .main-bottom-header .toggle-icon.active span {
    background: red
}

header .bottom-header .main-bottom-header .toggle-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(14px, 5px)
}

header .bottom-header .main-bottom-header .toggle-icon.active span:nth-child(2) {
    opacity: 0
}

header .bottom-header .main-bottom-header .toggle-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(14px, -6px)
}

header .bottom-header .main-bottom-header .primary-menu nav ul {
    display       : flex;
    align-items   : center;
    gap           : 20px;
    font-size     : 18px;
    font-weight   : 600;
    letter-spacing: 1px;
    text-transform: capitalize
}

header .bottom-header .main-bottom-header .primary-menu nav ul a {
    color: #fff
}

header .bottom-header .main-bottom-header .primary-menu nav ul .active-nav {
    color: red
}

@media(max-width: 992px) {
    header .bottom-header .main-bottom-header {
        padding: 8px 0px
    }

    header .bottom-header .main-bottom-header .toggle-icon {
        display: flex;
        z-index: 9999
    }

    header .bottom-header .main-bottom-header .primary-menu {
        position       : fixed;
        top            : 0;
        right          : -100%;
        width          : 350px;
        height         : 100vh;
        background     : #000;
        box-shadow     : -5px 0px 15px rgba(0, 0, 0, .1019607843);
        display        : flex;
        align-items    : center;
        flex-direction : column;
        justify-content: center;
        gap            : 20px;
        transition     : all .3s ease;
        z-index        : 999
    }

    header .bottom-header .main-bottom-header .primary-menu nav ul {
        flex-direction: column;
        gap           : 30px;
        font-size     : 20px;
        font-weight   : 600;
        letter-spacing: 1px;
        text-transform: capitalize
    }

    header .bottom-header .main-bottom-header .primary-menu nav ul a {
        color: #fff
    }

    header .bottom-header .main-bottom-header .primary-menu nav ul .active-nav {
        color: red
    }

    header .bottom-header .main-bottom-header .primary-menu.active {
        right: 0
    }

    header .bottom-header .main-bottom-header .header-btn {
        display: block;
    }
}

.hero-section {
    position: relative;
    width   : 100%;
    height  : 100vh;
    overflow: hidden;
    display : flex
}

.hero-section video {
    width        : 100%;
    position     : absolute;
    top          : 50%;
    left         : 50%;
    min-width    : 100%;
    min-height   : 100%;
    width        : auto;
    height       : auto;
    transform    : translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit   : cover
}

.hero-section .desktop-banner {
    display: block
}

.hero-section .mobile-banner {
    display: none
}

@media(max-width: 768px) {
    .hero-section {
        height: 90vh
    }

    .hero-section .desktop-banner {
        display: none
    }

    .hero-section .mobile-banner {
        display: block
    }
}

@media(max-width:445px) {
    .primary-btn a {
        padding  : 11px 20px;
        font-size: 11px !important;
    }

    header .bottom-header .main-bottom-header .toggle-icon span {
        width: 30px;
    }

    header .bottom-header .main-bottom-header .toggle-icon span:nth-child(2) {
        width: 24px;
    }

    header .bottom-header .main-bottom-header .toggle-icon span:nth-child(3) {
        width: 31px;
    }

    header .bottom-header .main-bottom-header .toggle-icon {
        gap           : 6px;
    }

    header .bottom-header .main-bottom-header .logo img {
        width: 115px;
    }
}

.about-section {
    background         : url("../upload/other/shape-img1.png");
    background-repeat  : no-repeat;
    background-position: right top
}

.about-section .main-about-section {
    display: flex;
    gap    : 50px
}

.about-section .main-about-section .about-content {
    width: 50%
}

.about-section .main-about-section .about-content p {
    margin: 20px 0px
}

.about-section .main-about-section .about-content ul {
    display       : flex;
    flex-direction: column;
    gap           : 10px;
    margin        : 20px 0px
}

.about-section .main-about-section .about-content ul li {
    display    : flex;
    align-items: center;
    gap        : 10px;
    font-size  : 18px
}

.about-section .main-about-section .about-content ul li i {
    color: red
}

.about-section .main-about-section .about-feature {
    width  : 50%;
    padding: 0 30px
}

.about-section .main-about-section .about-feature .main-about-feature {
    display              : grid;
    grid-template-columns: repeat(2, 1fr);
    gap                  : 30px
}

.about-section .main-about-section .about-feature .main-about-feature .item {
    background    : #fff;
    box-shadow    : 0px 0px 15px rgba(0, 0, 0, .1019607843);
    padding       : 40px 20px;
    display       : flex;
    flex-direction: column;
    gap           : 10px
}

.about-section .main-about-section .about-feature .main-about-feature .item span {
    width          : 90px;
    height         : 90px;
    border-radius  : 100%;
    background     : #efefef;
    display        : flex;
    justify-content: center;
    align-items    : center
}

.about-section .main-about-section .about-feature .main-about-feature .item span img {
    width  : 55px;
    display: flex
}

.about-section .main-about-section .about-feature .main-about-feature .item h4 {
    font-size: 22px
}

@media(max-width: 768px) {
    .about-section .main-about-section .about-feature .main-about-feature {
        grid-template-columns: 1fr
    }
}

@media(max-width: 992px) {
    .about-section .main-about-section {
        flex-direction: column
    }

    .about-section .main-about-section .about-content,
    .about-section .main-about-section .about-feature {
        width: 100%
    }

    .about-section .main-about-section .about-feature {
        padding: 0
    }
}

.section-title {
    font-size: 50px
}

@media(max-width: 450px) {
    .section-title {
        font-size: 28px
    }
}

.section-subtitle {
    display    : flex;
    align-items: center;
    gap        : 10px;
    font-size  : 16px
}

.service-section {
    background           : url("../upload/other/black-texture.jpg");
    background-repeat    : no-repeat;
    background-attachment: fixed;
    background-size      : cover;
    color                : #fff
}

.service-section .section-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center
}

.service-section .section-header .service-header-content {
    width: 60%
}

@media(max-width: 768px) {
    .service-section .section-header {
        flex-direction: column;
        align-items   : start;
        gap           : 30px
    }

    .service-section .section-header .service-header-content {
        width: 100%
    }
}

.service-section .main-service-items {
    display   : flex;
    gap       : 30px;
    margin-top: 50px
}

.service-section .main-service-items .service-item {
    width        : 33.33%;
    background   : #fff;
    color        : #000;
    box-shadow   : 0px 0px 15px rgba(0, 0, 0, .1019607843);
    border-radius: 10px;
    overflow     : hidden
}

.service-section .main-service-items .service-item .service-thumb {
    overflow: hidden
}

.service-section .main-service-items .service-item .service-thumb img {
    width     : 100%;
    transition: all .3s ease;
    display   : flex
}

.service-section .main-service-items .service-item:hover .service-thumb img {
    transform: scale(1.1)
}

.service-section .main-service-items .service-item .service-content {
    padding: 15px
}

.service-section .main-service-items .service-item .service-content .service-title {
    font-size: 22px
}

.service-section .main-service-items .service-item .service-content p {
    font-size: 16px;
    margin   : 10px 0px
}

.service-section .main-service-items .service-item .service-content .read-more {
    color      : red;
    font-weight: 600;
    display    : flex;
    align-items: center;
    gap        : 5px;
    margin-top : 10px
}

.service-section .main-service-items .service-item .service-content .read-more i {
    font-size: 14px
}

.service-section .main-service-items .service-item a {
    color: #222
}

@media(max-width: 768px) {
    .service-section .main-service-items {
        flex-direction: column
    }

    .service-section .main-service-items .service-item {
        width: 100%
    }
}

.why-choose-section .main-why-choose {
    display: flex;
    gap    : 50px
}

.why-choose-section .main-why-choose .why-choose-content {
    width: 50%
}

.why-choose-section .main-why-choose .why-choose-content p {
    margin-top: 20px
}

.why-choose-section .main-why-choose .why-choose-img {
    width: 50%
}

@media(max-width: 992px) {
    .why-choose-section .main-why-choose {
        flex-direction: column
    }

    .why-choose-section .main-why-choose .why-choose-content,
    .why-choose-section .main-why-choose .why-choose-img {
        width: 100%
    }
}

.why-choose-section .why-choose-feature {
    background     : #e9e9e9;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    gap            : 10px;
    border-radius  : 155px;
    width          : 850px;
    margin-top     : -13px;
    position       : relative;
    z-index        : 1
}

.why-choose-section .why-choose-feature .img-box {
    animation: roteate 20s linear infinite
}

.why-choose-section .why-choose-feature .img-box img {
    width: 180px
}

@keyframes roteate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.why-choose-section .why-choose-feature .content-box h4 {
    font-size: 20px
}

.why-choose-section .why-choose-feature .content-box ul {
    display       : flex;
    flex-direction: column;
    gap           : 8px;
    margin-top    : 15px
}

.why-choose-section .why-choose-feature .content-box ul i {
    color: red
}

@media(max-width: 992px) {
    .why-choose-section .why-choose-feature {
        margin       : -60px auto 0;
        width        : 100%;
        border-radius: 0px;
        padding      : 10px
    }

    .why-choose-section .why-choose-feature .img-box {
        display: none
    }
}

@media(max-width: 450px) {
    .why-choose-section .why-choose-feature {
        flex-direction: column;
        align-items   : start
    }
}

.gallery-section {
    overflow: hidden;
    width   : 100%
}

.column-box {
    display  : flex;
    gap      : 20px;
    flex-wrap: nowrap
}

.column-box .item {
    flex         : 0 0 auto;
    border-radius: 10px;
    box-shadow   : 0px 0px 15px rgba(0, 0, 0, .1019607843);
    overflow     : hidden
}

.column-box .item img {
    transition: all .3s ease-in-out
}

.column-box .item:hover img {
    transform: scale(1.03)
}

.column-box img {
    height : 400px;
    display: block
}

@media(max-width: 450px) {
    .column-box img {
        height: 250px
    }
}

.left-right {
    display  : flex;
    width    : -moz-max-content;
    width    : max-content;
    animation: marqueeLeftRight 60s linear infinite
}

@keyframes marqueeLeftRight {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.right-left {
    display   : flex;
    width     : -moz-max-content;
    width     : max-content;
    animation : marqueeRightLeft 60s linear infinite;
    margin-top: 20px
}

@keyframes marqueeRightLeft {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.testimonial-section .main-testimonial {
    display: flex;
    gap    : 50px
}

.testimonial-section .main-testimonial .testimonial-image {
    width   : 40%;
    position: relative
}

.testimonial-section .main-testimonial .testimonial-image img {
    width        : 80%;
    border-radius: 10px;
    box-shadow   : 0px 0px 15px rgba(0, 0, 0, .1019607843);
    position     : relative
}

.testimonial-section .main-testimonial .testimonial-image::before {
    position  : absolute;
    content   : "";
    right     : 57px;
    bottom    : 0px;
    top       : -30px;
    width     : 371px;
    height    : 423px;
    background: url(../upload/other/pattern-21.png) no-repeat
}

@media(max-width: 992px) {
    .testimonial-section .main-testimonial .testimonial-image {
        display: none
    }
}

.testimonial-section .main-testimonial .testimonial-box {
    width: 60%
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item {
    background   : #fff;
    box-shadow   : 0px 0px 15px rgba(0, 0, 0, .1019607843);
    padding      : 30px 20px;
    border-radius: 0 0 0 30px;
    border       : 1px dashed #ccc;
    position     : relative;
    margin       : 30px 10px
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item p {
    font-size    : 16px;
    margin-bottom: 20px
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item .item-footer {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 0 30px;
    margin-bottom  : -50px
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item .item-footer .google-logo {
    background-color: #fff;
    box-shadow      : 0px 0px 12px rgba(0, 0, 0, .1019607843);
    width           : 70px;
    height          : 70px;
    display         : grid;
    place-items     : center
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item .item-footer .google-logo img {
    width: 50px
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item .item-footer .quote-icon {
    background-color: #000;
    width           : 50px;
    height          : 50px;
    color           : #fff;
    display         : flex;
    justify-content : center;
    align-items     : center
}

.testimonial-section .main-testimonial .testimonial-box .testimonial-slider .item .item-footer .quote-icon i {
    display  : flex;
    font-size: 26px
}

@media(max-width: 992px) {
    .testimonial-section .main-testimonial .testimonial-box {
        width: 100%
    }
}

footer {
    background: #000;
    color     : #ecf0f1;
    padding   : 3rem 0 0;
    margin-top: auto
}

@media(max-width: 768px) {
    footer .footer-logo {
        width: 200px
    }
}

.footer-container {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 2rem
}

.footer-section h3 {
    color        : red;
    margin-bottom: 1rem;
    font-size    : 1.5rem
}

.footer-section a {
    color: #fff
}

.footer-section h4 {
    color         : red;
    margin-bottom : 1rem;
    font-size     : 1.2rem;
    border-bottom : 2px solid red;
    padding-bottom: .5rem;
    display       : inline-block
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height  : 1.6;
    color        : #bdc3c7
}

.social-links {
    display   : flex;
    gap       : 1rem;
    margin-top: 1rem
}

.social-link {
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 40px;
    height         : 40px;
    background     : #34495e;
    border-radius  : 50%;
    color          : #ecf0f1;
    text-decoration: none;
    transition     : all .3s ease;
    border         : 2px solid rgba(0, 0, 0, 0)
}

.social-link:hover {
    background  : red;
    transform   : translateY(-2px);
    border-color: #ecf0f1
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom : .5rem;
    text-transform: capitalize
}

.footer-links a {
    color          : #bdc3c7;
    text-decoration: none;
    transition     : color .3s ease;
    display        : inline-block;
    padding        : .2rem 0
}

.footer-links a:hover {
    color    : red;
    transform: translateX(5px)
}

.contact-info {
    display       : flex;
    flex-direction: column;
    gap           : 1rem
}

.contact-item {
    display    : flex;
    align-items: center;
    gap        : .5rem;
    color      : #bdc3c7
}

.contact-item i {
    color: red;
    width: 20px
}

.footer-bottom {
    padding   : 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #4a4a4a
}

.footer-bottom-container {
    font-size : 14px;
    text-align: center
}

.footer-bottom-container a {
    color: #fff
}

.footer-bottom-container img {
    width     : 100px;
    margin-top: 10px
}

.footer-bottom-links {
    display: flex;
    gap    : 2rem
}

.footer-bottom-links a {
    color          : #bdc3c7;
    text-decoration: none;
    transition     : color .3s ease;
    font-size      : 12px
}

.footer-bottom-links a:hover {
    color: red
}

@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align    : center
    }

    .footer-bottom-links {
        justify-content: center
    }
}

@media(max-width: 480px) {
    .footer {
        padding: 2rem 0 0
    }

    .footer-container {
        padding: 0 1rem
    }

    .footer-bottom-links {
        flex-direction: column;
        gap           : .5rem
    }

    .newsletter-form {
        flex-direction: column
    }
}

.footer-links a {
    position: relative
}

.footer-links a::after {
    content         : "";
    position        : absolute;
    width           : 0;
    height          : 2px;
    bottom          : 0;
    left            : 0;
    background-color: red;
    transition      : width .3s ease
}

.footer-links a:hover::after {
    width: 100%
}




/* about page start here  */
.about-hero {
    background : linear-gradient(rgb(70 8 8 / 71%), rgb(64 15 15 / 51%)), url(../upload/about-bg.jpg) center / cover no-repeat;
    min-height : 60vh;
    display    : flex;
    align-items: center;
    position   : relative;
    overflow   : hidden;
    padding    : 60px 0;
}

.container {
    max-width: 1200px;
    margin   : 0 auto;
    padding  : 0 20px;
    width    : 100%;
}

.hero-content {
    position   : relative;
    z-index    : 2;
    color      : white;
    text-align : center;
    padding-top: 184px;
}

.page-title {
    font-size              : 72px;
    font-weight            : 800;
    margin-bottom          : 20px;
    text-shadow            : 3px 3px 6px rgb(18 18 18 / 30%);
    background             : linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
}

.breadcrumb-section {
    display        : flex;
    justify-content: center;
    align-items    : center;
    gap            : 15px;
    font-size      : 18px;
    margin-bottom  : 30px;
    flex-wrap      : wrap;
}

.breadcrumb-section p {
    margin     : 0;
    color      : #ecf0f1;
    font-weight: 500;
}

.breadcrumb-section a {
    color          : #f10f0f;
    text-decoration: none;
    font-weight    : 600;
    transition     : all 0.3s ease;
    position       : relative;
}

.breadcrumb-section a:hover {
    color    : #e74c3c;
    transform: translateY(-2px);
}

.breadcrumb-section a::after {
    content   : '';
    position  : absolute;
    bottom    : -2px;
    left      : 0;
    width     : 0;
    height    : 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.breadcrumb-section a:hover::after {
    width: 100%;
}







/* Responsive Design */
@media (max-width: 1200px) {
    .page-title {
        font-size: 60px;
    }

    .container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .about-hero {
        min-height: 70vh;
    }

    .page-title {
        font-size: 48px;
    }

    .hero-content {

        padding-top: 124px;
    }

    .about-hero {
        min-height: 40vh;

    }


}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding   : 40px 0;
    }

    .page-title {
        font-size: 36px;
    }


}

@media (max-width: 576px) {
    .about-hero {
        min-height: 40vh;
    }

    .page-title {
        font-size: 32px;
    }

    .hero-content {

        padding-top: 154px;
    }


}

@media (max-width: 400px) {
    .page-title {
        font-size: 28px;
    }


}

.about-section {
    position  : relative;
    display   : block;
    padding   : 80px 0 180px;
    background: #f8f9fa;
    z-index   : 1;

}



.row-section {
    display        : flex;
    flex-wrap      : wrap;
    margin         : 0 -15px;
    justify-content: center;
    align-items    : center;
}

.col-6 {
    width  : 50%;
    padding: 0 15px;
}

.about-left {
    position     : relative;
    display      : block;
    /* margin-top: 65px; */
}

.section-title {
    text-align   : left;
    margin-bottom: 30px;
}

.section-tagline {
    display       : inline-block;
    font-size     : 14px;
    font-weight   : 600;
    color         : #e74c3c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom : 15px;
    position      : relative;
}

.section-tagline::before {
    content   : '';
    position  : absolute;
    left      : 0;
    bottom    : -5px;
    width     : 40px;
    height    : 2px;
    background: #e74c3c;
}

.section-main-title {
    font-size    : 40px;
    font-weight  : 700;
    line-height  : 1.1;
    color        : #2c3e50;
    margin-bottom: -14px;
    padding-top  : 22px;
}

.about-text {
    font-size    : 18px;
    line-height  : 1.8;
    color        : #060606;
    margin-bottom: 6px;
}

.about-points {
    position  : relative;
    display   : block;
    list-style: none;
}

.about-points li {
    position     : relative;
    display      : flex;
    align-items  : center;
    gap          : 11px;
    margin-bottom: 16px;
    padding      : 6px 0;
}

.about-points li:last-child {
    margin-bottom: 0;
}

.point-icon {
    position       : relative;
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 30px;
    height         : 30px;
    background     : #e74c3c;
    border-radius  : 50%;
    flex-shrink    : 0;
}

.point-icon i {
    color    : white;
    font-size: 14px;
}

.point-text {
    position: relative;
    display : block;
    flex    : 1;
}

.point-text p {
    font-size  : 18px;
    font-weight: 600;
    line-height: 28px;
    color      : #2c3e50;
    margin     : 0;
}

.about-right {
    position   : relative;
    display    : block;
    margin-left: 60px;
}

.about-img-box {
    position: relative;
    display : block;
}

.about-img {
    position     : relative;
    display      : block;
    border-radius: 20px;
    overflow     : hidden;
    box-shadow   : 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width     : 100%;
    height    : auto;
    display   : block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.feature-box {
    position        : absolute;
    left            : -60px;
    bottom          : -80px;
    max-width       : 385px;
    width           : 100%;
    border-radius   : 20px;
    background-color: #2c3e50;
    text-align      : center;
    padding         : 40px 30px 50px;
    overflow        : hidden;
    z-index         : 2;
    box-shadow      : 0 25px 50px rgba(0, 0, 0, 0.2);
}

.feature-box-bg {
    position         : absolute;
    top              : 0;
    left             : 0;
    right            : 0;
    bottom           : 0;
    opacity          : 0.1;
    background       : url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.3' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index          : -1;
}

.feature-icon {
    position        : relative;
    display         : flex;
    align-items     : center;
    justify-content : center;
    width           : 80px;
    height          : 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius   : 50%;
    margin          : 0 auto;
    transition      : all 0.5s ease;
}

.feature-box:hover .feature-icon {
    background-color: rgba(255, 255, 255, 1);
}

.feature-icon i {
    position  : relative;
    display   : inline-block;
    font-size : 36px;
    color     : #ffffff;
    transition: all 0.5s ease;
}

.feature-box:hover .feature-icon i {
    color: #e74c3c;
}

.feature-title {
    font-size    : 28px;
    font-weight  : 600;
    line-height  : 1.3;
    color        : #ffffff;
    margin-top   : 30px;
    margin-bottom: 20px;
}

.feature-text {
    color      : rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size  : 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-right {
        margin-left: 30px;
    }

    .feature-box {
        left  : -30px;
        bottom: -60px;
    }
}

@media (max-width: 992px) {
    .col-6 {
        width: 100%;
    }

    .about-left {
        margin-top   : 0;
        margin-bottom: 60px;
    }

    .about-right {
        margin-left: 0;
    }

    .feature-box {
        position  : relative;
        left      : 0;
        bottom    : 0;
        max-width : 100%;
        margin-top: 40px;
    }

    .section-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0 100px;
    }

    .section-main-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }

    .point-text p {
        font-size: 16px;
    }

    .feature-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0 80px;
    }

    .section-main-title {
        font-size: 28px;
    }

    .feature-box {
        padding: 30px 20px 40px;
    }

    .feature-icon {
        width : 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 28px;
    }
}

@media (max-width: 400px) {
    .section-main-title {
        font-size: 24px;
    }

    .about-points li {
        /* flex-direction: column; */
        align-items    : flex-start;
        gap            : 10px;
        justify-content: center;
        align-items    : center;
    }

    .point-icon {
        margin-bottom: 5px;
    }
}

/* about page end here  */


/* service page start here  */
.services-section {
    position: relative;
    display : block;

    z-index: 1;
}



.services-grid-1 {
    padding              : 100px 0 70px;
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap                  : 30px;
}

.service-card {
    background   : white;
    border-radius: 15px;
    overflow     : hidden;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
    transition   : all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform : translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-box {
    position: relative;
    display : block;
    overflow: hidden;
}

.service-image {
    position: relative;
    display : block;
    /* height  : 400px; */
    overflow: hidden;
}

.service-image img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-count {
    position       : absolute;
    top            : 20px;
    right          : 20px;
    width          : 50px;
    height         : 50px;
    background     : #e74c3c;
    color          : white;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 18px;
    font-weight    : 700;
    z-index        : 2;
}

.service-content {
    padding : 12px 37px;
    position: relative;
}

.service-icon {
    position       : absolute;
    top            : -30px;
    left           : 30px;
    width          : 60px;
    height         : 60px;
    background     : #2c3e50;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #e74c3c;
    transform : rotate(360deg);
}

.service-icon i {
    color    : white;
    font-size: 24px;
}

.service-title {
    margin-top   : 20px;
    margin-bottom: 15px;
}

.service-title a {
    font-size      : 22px;
    font-weight    : 700;
    color          : #2c3e50;
    text-decoration: none;
    transition     : color 0.3s ease;
}

.service-title a:hover {
    color: #e74c3c;
}

.service-text {
    color        : #7f8c8d;
    line-height  : 1.6;
    margin-bottom: 20px;
    font-size    : 15px;
}

.service-btn {
    display        : inline-flex;
    align-items    : center;
    color          : #e74c3c;
    text-decoration: none;
    font-weight    : 600;
    font-size      : 15px;
    transition     : all 0.3s ease;
}

.service-btn:hover {
    color    : #2c3e50;
    transform: translateX(5px);
}

.service-btn i {
    margin-left: 8px;
    font-size  : 14px;
    transition : transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0 50px;
    }

    .services-grid-1 {
        grid-template-columns: 1fr;
        gap                  : 20px;

        padding: 33px 0 70px;
    }

    .service-image {
        /* height: 200px; */
    }

    .service-content {
        padding: 25px;
    }

    .service-title a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 1px 0 40px;
    }

    .container {
        padding: 0 15px;
    }

    .service-image {
        /* height: 180px; */
    }

    .service-content {
        padding: 20px;
    }

    .service-icon {
        width : 50px;
        height: 50px;
        top   : -20px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-count {
        width    : 40px;
        height   : 40px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .service-title a {
        font-size: 18px;
    }

    .service-text {
        font-size: 14px;
    }
}


/* service detail page start here  */
.service-details-page {
    padding: 80px 0;
}


.service-layout {
    display              : grid;
    grid-template-columns: 350px 1fr;
    gap                  : 40px;
    align-items          : start;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top     : 100px;
}

.services-box {
    background   : white;
    border-radius: 15px;
    padding      : 30px 25px;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.services-title {
    font-size     : 24px;
    font-weight   : 700;
    color         : #000;
    margin-bottom : 25px;
    padding-bottom: 15px;
    border-bottom : 2px solid #e74c3c;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 12px;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list a {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    background     : #f8f9fa;
    padding        : 15px 20px;
    border-radius  : 10px;
    text-decoration: none;
    color          : #333;
    font-weight    : 600;
    transition     : all 0.3s ease;
    border         : 2px solid transparent;
}

.services-list a:hover {
    background: #e74c3c;
    color     : white;
    transform : translateX(5px);
}

.services-list li.active a {
    background  : #e74c3c;
    color       : white;
    border-color: #c0392b;
}

.services-list a i {
    font-size : 14px;
    transition: transform 0.3s ease;
}

.services-list a:hover i {
    transform: translateX(3px);
}

.contact-box {
    background   : linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding      : 40px 30px;
    text-align   : center;
    color        : white;
    position     : relative;
    overflow     : hidden;
    margin-bottom: 30px;
    box-shadow   : 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-box::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    right     : 0;
    height    : 60%;
    background: #e74c3c;
    clip-path : polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    z-index   : 1;
}

.contact-image {
    position     : relative;
    z-index      : 2;
    margin-bottom: 20px;
}

.contact-image img {
    width        : 120px;
    height       : 120px;
    border-radius: 50%;
    object-fit   : cover;
    border       : 4px solid white;
}

.contact-content {
    position: relative;
    z-index : 2;
}

.contact-icon {
    width          : 60px;
    height         : 60px;
    background     : #000;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin         : 0 auto 20px;
}

.contact-icon i {
    color    : white;
    font-size: 24px;
}

.contact-content h2 {
    font-size    : 28px;
    margin-bottom: 15px;
}

.contact-content h2 a {
    color          : white;
    text-decoration: none;
    transition     : color 0.3s ease;
}

.contact-content h2 a:hover {
    color: #e74c3c;
}

.contact-content p {
    font-size  : 16px;
    opacity    : 0.9;
    line-height: 1.5;
    color      : #ffffff;
}



/* Main Content Styles */
.service-main-content {
    background   : white;
    border-radius: 15px;
    padding      : 40px;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    border-radius: 15px;
    overflow     : hidden;
    margin-bottom: 15px;
}

.service-image img {
    width     : 100%;
    height    : 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-title {
    font-size    : 36px;
    font-weight  : 700;
    color        : #000;
    margin-bottom: 20px;
}

.service-text {
    font-size    : 16px;
    line-height  : 1.8;
    color        : #555;
    margin-bottom: 25px;
}

.service-text.highlight {
    font-size  : 18px;
    font-weight: 600;
    color      : #000;
}

.service-points {
    list-style: none;
    margin    : 30px 0;
}

.service-points li {
    display      : flex;
    align-items  : flex-start;
    gap          : 15px;
    margin-bottom: 20px;
}

.service-points li:last-child {
    margin-bottom: 0;
}

.point-icon {
    width          : 24px;
    height         : 24px;
    background     : #e74c3c;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-shrink    : 0;
    margin-top     : 2px;
}

.point-icon i {
    color    : white;
    font-size: 12px;
}

.point-text {
    flex       : 1;
    color      : #555;
    line-height: 1.6;
}

.features-grid {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 30px;
    margin               : 40px 0;
}

.feature-card {
    background   : #000000;
    border-radius: 15px;
    padding      : 30px;
    transition   : all 0.3s ease;
}

.feature-card:hover {
    transform : translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-image {
    border-radius: 10px;
    overflow     : hidden;
    margin-bottom: 20px;
}

.feature-image img {
    width     : 100%;
    height    : 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-header {
    display       : flex;
    align-items   : center;
    gap           : -7px;
    margin-bottom : 15px;
    flex-direction: column;
}

.feature-icon {
    width          : 50px;
    height         : 50px;
    background     : #e74c3c;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.feature-icon i {
    color    : white;
    font-size: 24px;
}

.feature-title {
    font-size  : 20px;
    font-weight: 700;
    color      : #ffffff;
    text-align : center;
}

.feature-text {
    color      : #ffffff;
    line-height: 1.6;
    text-align : center;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 300px 1fr;
        gap                  : 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-layout {
        grid-template-columns: 1fr;
        /* Stack everything */
        gap                  : 30px;
    }

    .service-sidebar {
        position: static;
        /* Remove sticky */
        order   : 2;
        /* Make sure sidebar comes after main content */
    }

    .service-main-content {
        order: 1;
        /* Main content first */
    }
}

@media (max-width: 768px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap                  : 30px;
    }

    .service-sidebar {
        position: static;
    }

    .service-main-content {
        padding: 30px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-image img {
        height: 305px;
    }
}

@media (max-width: 576px) {
    .service-details-page {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .service-main-content {
        padding: 25px 20px;
    }

    .services-box,
    .contact-box,
    .download-box {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .contact-content h2 {
        font-size: 24px;
    }

    .accordion-header {
        padding  : 15px 20px;
        font-size: 16px;
    }

    .feature-card {
        padding: 20px;
    }
}


/* gallery start here  */
.gallery {
    max-width: 1200px;
    margin   : 0 auto;
    padding  : 80px 0px;
}

.gallery-grid {
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap                  : 20px;
}

.gallery-item {
    position     : relative;
    border-radius: 10px;
    overflow     : hidden;
    box-shadow   : 0 5px 15px rgba(0, 0, 0, 0.1);
    transition   : all 0.3s ease;
    aspect-ratio : 1;
}

.gallery-item:hover {
    transform : scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position       : absolute;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    background     : rgba(0, 0, 0, 0.5);
    display        : flex;
    align-items    : center;
    justify-content: center;
    opacity        : 0;
    transition     : opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    color     : white;
    font-size : 24px;
    transform : scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .view-icon {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap                  : 15px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}


/* contact us start here  */
.contact_section {
    padding         : 80px 0;
    background-color: #f8f9fa;
}

.contact_container {
    max-width: 1200px;
    margin   : 0 auto;
    padding  : 0 20px;
}

.contact_row {
    display  : flex;
    flex-wrap: wrap;
    margin   : 0 -15px;
}

.contact_col_left {
    flex     : 0 0 58.333333%;
    max-width: 58.333333%;
    padding  : 0 15px;
}

.contact_col_right {
    flex     : 0 0 41.666667%;
    max-width: 41.666667%;
    padding  : 0 15px;
}

.section_title {
    margin-bottom: 40px;
}

.section_subtitle {
    display       : block;
    font-size     : 16px;
    color         : #e63946;
    font-weight   : 600;
    margin-bottom : 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section_heading {
    font-size    : 36px;
    color        : #1a3a5f;
    margin-bottom: 15px;
    font-weight  : 700;
}

.section_description {
    font-size    : 16px;
    color        : #666;
    line-height  : 1.7;
    margin-bottom: 30px;
}

.contact_form {
    background   : white;
    padding      : 40px;
    border-radius: 10px;
    box-shadow   : 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form_row {
    display  : flex;
    flex-wrap: wrap;
    margin   : 0 -10px;
}

.form_group {
    flex         : 0 0 50%;
    max-width    : 50%;
    padding      : 0 10px;
    margin-bottom: 20px;
}

.form_group_full {
    flex         : 0 0 100%;
    max-width    : 100%;
    padding      : 0 10px;
    margin-bottom: 20px;
}

.form_control {
    width        : 100%;
    padding      : 12px 15px;
    border       : 1px solid #ddd;
    border-radius: 5px;
    font-size    : 16px;
    transition   : all 0.3s;
}

.form_control:focus {
    border-color: #1a3a5f;
    outline     : none;
    box-shadow  : 0 0 0 2px rgba(26, 58, 95, 0.2);
}

textarea.form_control {
    min-height: 150px;
    resize    : vertical;
}

.form_buttons {
    display   : flex;
    flex-wrap : wrap;
    gap       : 15px;
    margin-top: 10px;
}

.btn_primary {
    background   : #e63946;
    color        : white;
    border       : none;
    padding      : 14px 30px;
    border-radius: 5px;
    font-size    : 16px;
    font-weight  : 600;
    cursor       : pointer;
    transition   : background 0.3s;
}

.btn_primary:hover {
    background: #c1121f;
}

.btn_secondary {
    background   : #6c757d;
    color        : white;
    border       : none;
    padding      : 14px 30px;
    border-radius: 5px;
    font-size    : 16px;
    font-weight  : 600;
    cursor       : pointer;
    transition   : background 0.3s;
}

.btn_secondary:hover {
    background: #5a6268;
}

.contact_info {
    background   : white;
    padding      : 40px;
    border-radius: 10px;
    box-shadow   : 0 5px 15px rgba(0, 0, 0, 0.05);
    height       : 100%;
}

.contact_list {
    list-style: none;
    margin-top: 30px;
}

.contact_item {
    display       : flex;
    align-items   : flex-start;
    margin-bottom : 30px;
    padding-bottom: 20px;
    border-bottom : 1px solid #eee;
}

.contact_icon {
    background     : #1a3a5f;
    color          : white;
    width          : 50px;
    height         : 50px;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin-right   : 20px;
    flex-shrink    : 0;
    font-size      : 20px;
}

.contact_text h6 {
    font-size    : 18px;
    color        : #1a3a5f;
    margin-bottom: 5px;
    font-weight  : 600;
}

.contact_text a {
    color          : #e63946;
    text-decoration: none;
    font-weight    : 500;
    transition     : color 0.3s;
}

.contact_text a:hover {
    color: #c1121f;
}

.contact_text span {
    color    : #666;
    font-size: 16px;
}

.service_hours {
    margin-top   : 40px;
    padding      : 20px;
    background   : #f8f9fa;
    border-radius: 8px;
}

.service_hours h4 {
    color        : #1a3a5f;
    margin-bottom: 15px;
    font-size    : 20px;
}

.service_hours p {
    margin-bottom: 8px;
    color        : #555;
}

.service_hours strong {
    color: #1a3a5f;
}

@media (max-width: 992px) {

    .contact_col_left,
    .contact_col_right {
        flex         : 0 0 100%;
        max-width    : 100%;
        margin-bottom: 40px;
    }

    .contact_info {
        height: auto;
    }
}

@media (max-width: 768px) {
    .form_group {
        flex     : 0 0 100%;
        max-width: 100%;
    }

    .form_buttons {
        flex-direction: column;
    }

    .btn_primary,
    .btn_secondary {
        width: 100%;
    }

    .contact_section {
        padding: 50px 0;
    }

    .section_heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .contact_form,
    .contact_info {
        padding: 25px;
    }

    .contact_item {
        flex-direction: column;
        text-align    : center;
    }

    .contact_icon {
        margin-right : 0;
        margin-bottom: 15px;
    }

    .contact_item {
        display        : flex;
        align-items    : flex-start;
        margin-bottom  : 30px;
        padding-bottom : 20px;
        border-bottom  : 1px solid #eee;
        justify-content: center;
        align-items    : center;
    }
}


/* request a quate start here  */
.header-btn {
    display        : flex;
    justify-content: center;
    margin         : 50px 0;
}

.primary-btn {
    background   : #e63946;
    border       : none;
    border-radius: 8px;
    padding      : 0;
    cursor       : pointer;
    transition   : all 0.3s;
    box-shadow   : 0 4px 8px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    background: #c1121f;
    transform : translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.primary-btn a {
    display        : flex;
    align-items    : center;
    padding        : 15px 25px;
    color          : white;
    text-decoration: none;
    font-weight    : 600;
    font-size      : 18px;
}

.primary-btn span {
    margin-right: 10px;
    display     : flex;
    align-items : center;
}

.primary-btn img {
    width : 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Popup Overlay */
.popup-overlay {
    position       : fixed;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    background     : rgba(0, 0, 0, 0.7);
    display        : none;
    justify-content: center;
    align-items    : center;
    z-index        : 1000;
    padding        : 20px;
}

.popup-overlay.active {
    display: flex;
}

/* Popup Content */
.estimate_section-1 {
    background   : white;
    border-radius: 12px;
    width        : 100%;
    max-width    : 800px;
    max-height   : 90vh;
    overflow-y   : auto;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.3);
    position     : relative;
}

.popup-header {
    background     : #1a3a5f;
    color          : white;
    padding        : 20px 30px;
    border-radius  : 12px 12px 0 0;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
}

.popup-title {
    font-size  : 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border    : none;
    color     : white;
    font-size : 28px;
    cursor    : pointer;
    transition: transform 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.popup-body {
    padding: 30px;
}

.form-row {
    display  : flex;
    flex-wrap: wrap;
    margin   : 0 -15px;
}

.form-group {
    flex         : 0 0 50%;
    max-width    : 50%;
    padding      : 0 15px;
    margin-bottom: 20px;
}

.form-group-full {
    flex         : 0 0 100%;
    max-width    : 100%;
    padding      : 0 15px;
    margin-bottom: 20px;
}

.form-label {
    display      : block;
    margin-bottom: 8px;
    font-weight  : 600;
    color        : #1a3a5f;
}

.form-control {
    width        : 100%;
    padding      : 12px 15px;
    border       : 1px solid #ddd;
    border-radius: 6px;
    font-size    : 16px;
    transition   : border 0.3s;
}

.form-control:focus {
    border-color: #1a3a5f;
    outline     : none;
    box-shadow  : 0 0 0 2px rgba(26, 58, 95, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize    : vertical;
}

.services-section {
    margin: 5px 0;
}

.services-title {
    font-size    : 20px;
    color        : #1a3a5f;
    margin-bottom: 15px;
    font-weight  : 600;
}

.services-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap                  : 15px;
}

.service-checkbox {
    display      : flex;
    align-items  : center;
    padding      : 10px;
    border       : 1px solid #ddd;
    border-radius: 6px;
    cursor       : pointer;
    transition   : all 0.3s;
}

.service-checkbox:hover {
    border-color: #1a3a5f;
    background  : #f8f9fa;
}

.service-checkbox input {
    margin-right: 10px;
}

.service-name {
    font-weight: 500;
}

.form-buttons {
    display        : flex;
    justify-content: flex-end;
    gap            : 15px;
    margin-top     : 20px;
}

.submit-btn {
    background   : #e63946;
    color        : white;
    border       : none;
    padding      : 14px 30px;
    border-radius: 6px;
    font-size    : 16px;
    font-weight  : 600;
    cursor       : pointer;
    transition   : background 0.3s;
}

.submit-btn:hover {
    background: #c1121f;
}

.cancel-btn {
    background   : #6c757d;
    color        : white;
    border       : none;
    padding      : 14px 30px;
    border-radius: 6px;
    font-size    : 16px;
    font-weight  : 600;
    cursor       : pointer;
    transition   : background 0.3s;
}

.cancel-btn:hover {
    background: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group {
        flex     : 0 0 100%;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
    }

    .submit-btn,
    .cancel-btn {
        width: 100%;
    }

    .popup-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .popup-header {
        padding: 15px 20px;
    }

    .popup-title {
        font-size: 20px;
    }

    .primary-btn a {
        padding  : 12px 20px;
        font-size: 16px;
    }
}