/* Import Fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/* Skeleton */
* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
    background: #D3D8DC;
}

a {
    color: #0D2137;
    text-decoration: none !important;
    outline: none !important;
    transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    line-height: normal;
    color: #0D2137;
    margin: 0;
}

h1 { font-size: 24px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }

p {
    margin: 0;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

/* Header Area */
.header {
    background: #FFFFFF;
    padding: 10px 0;
}

.navbar {
    padding: 0.5rem 1rem;
    background: #0D2137;
}

.logo-img {
    height: 80px;
    transition: height 0.3s ease;
}

.navbar-nav .nav-item .nav-link {
    color: #000000;
    font-size: 16px;
    padding: 10px 15px;
}

.contact-info .nav-item .nav-link {
    color: #000000;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-icon {
    height: 18px;
    margin-right: 5px;
}

/* Banner Area */
.banner-main {
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.banner-main .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(70%);
}

#myCarousel a.carousel-control-prev,
#myCarousel a.carousel-control-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 33, 55, 0.6);
    top: 50% !important;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#myCarousel a.carousel-control-prev {
    left: 15px !important;
}

#myCarousel a.carousel-control-next {
    right: 15px !important;
}

#myCarousel a.carousel-control-prev:hover,
#myCarousel a.carousel-control-next:hover {
    opacity: 1;
    background: rgba(13, 33, 55, 0.8);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 40px;
}

.banner-main .carousel-caption {
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.banner-main .carousel-caption h1 {
    color: #FFFFFF;
    font-size: 90px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000;
}

.banner-main .carousel-caption span {
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    display: block;
}

.banner-main .carousel-caption p {
    font-size: 22px;
    color: #FFFFFF;
    padding: 10px 0 30px;
    text-shadow: 1px 1px 2px #000;
}

.banner-main .carousel-caption .buynow {
    border: #FFFFFF solid 1px;
    background: #0D2137;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
}

.banner-main .carousel-caption .buynow:hover {
    border: #0D2137 solid 1px;
    background: #0D2137;
    color: #FFFFFF;
}

/* Title Section */
.title {
    text-align: center;
    padding-bottom: 40px;
}

.title h2 {
    padding: 0 0 6px 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #0D2137;
    line-height: 1.2;
    border-bottom: #0D2137 solid 1px;
    font-size: 40px;
    max-width: 350px;
    margin: 0 auto;
}

/* About Area */
.about {
    padding: 60px 0;
    background: #FFFFFF;
}

.about_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about_box p {
    font-size: 16px;
    line-height: 28px;
    color: #333333;
    padding: 15px 0;
    font-weight: 400;
}

.about_box .about-btn {
    color: #FFFFFF;
    font-size: 16px;
    background: #0D2137;
    border: #0D2137 solid 1px;
    padding: 12px 30px;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
    align-self: flex-start;
}

.about_box .about-btn:hover {
    background: #0D2137;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 33, 55, 0.3);
}

.about_img figure {
    margin: 0;
}

.about_img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.about_img img:hover {
    transform: scale(1.02);
}

.black {
    color: #0D2137;
}

/* Offer Area */
.offer {
    padding: 60px 0;
    background: #D3D8DC;
}

.offer_box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offer-img figure {
    margin: 0;
}

.offer-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.offer-img img:hover {
    transform: scale(1.02);
}

.offer-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #0D2137;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.offer-content p {
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    margin-bottom: 20px;
}

.offer-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background: #0D2137;
    color: #FFFFFF !important;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    text-align: center;
}

.offer-btn:hover {
    background: #0D2137;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 33, 55, 0.3);
}

/* Clients/Testimonial Area */
.clients {
    padding: 60px 0;
    background: #FFFFFF;
}

.clients_box {
    background: #F9F9F9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial_section {
    padding: 20px 0;
}

.testimonial_img img {
    width: 100%;
    max-width: 250px;
    border: 4px solid #0D2137;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.testimonial_img img:hover {
    transform: scale(1.05);
}

.testimonial_content h3 {
    font-size: 26px;
    font-weight: 500;
    color: #0D2137;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonial_content .orange_color {
    font-size: 16px;
    color: #0D2137;
    display: block;
}

.testimonial_border {
    width: 50px;
    height: 3px;
    background: #0D2137;
    margin: 10px 0;
}

.testimonial_content p {
    font-size: 15px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
}

#testimonial_slider .carousel-indicators {
    bottom: -50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#testimonial_slider .carousel-indicators li {
    width: 12px;
    height: 12px;
    background-color: #D3D8DC;
    border-radius: 50%;
    border: 2px solid #0D2137;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

#testimonial_slider .carousel-indicators li.active {
    background-color: #0D2137;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(13, 33, 55, 0.5);
}

#testimonial_slider .carousel-indicators li:hover {
    background-color: #0D2137;
    opacity: 0.9;
    transform: scale(1.1);
}

/* Contact Area */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8ECEF 0%, #D3D8DC 100%);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #0D2137;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 18px;
    color: #555555;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 450px;
    transition: opacity 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    color: #0D2137;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    color: #333333;
    background: #F9FAFB;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0D2137;
    box-shadow: 0 0 8px rgba(13, 33, 55, 0.2);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0A0A0;
    opacity: 0.8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #0D2137;
    color: #FFFFFF;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: center;
    width: 100%;
    max-width: 200px;
}

.submit-btn:hover {
    background: #1A3C5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(13, 33, 55, 0.3);
}

/* Footer Area */
.footer {
    background: #0D2137;
    padding: 80px 0 60px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    max-height: 150px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-links-section,
.footer-contact-section {
    text-align: left;
}

.footer-section h3,
.footer-links-section h3,
.footer-contact-section h3 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.footer-section h3::after,
.footer-links-section h3::after,
.footer-contact-section h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.footer-links li a,
.footer-contact li a,
.footer-contact li span {
    color: #D3D8DC;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: #FFFFFF;
}

.footer-icon {
    font-size: 14px;
    margin-right: 8px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.footer-contact li span {
    line-height: 22px;
}

.copyright {
    background: #081528;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    color: #D3D8DC;
    font-size: 14px;
    margin: 0;
}

.copyright a {
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #D3D8DC;
}

/* WhatsApp Button */
.whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp_float:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* Responsive CSS */
@media (max-width: 575px) {
    .logo-img {
        height: 50px;
    }
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        padding: 8px 0;
        text-align: center;
    }
    .contact-info .nav-item .nav-link {
        font-size: 12px;
        justify-content: center;
        padding: 5px 0;
    }
    .contact-icon {
        height: 14px;
    }
    .banner-main .carousel-item img {
        height: 400px;
    }
    .banner-main .carousel-caption h1 {
        font-size: 40px;
    }
    .banner-main .carousel-caption span {
        font-size: 24px;
    }
    .banner-main .carousel-caption p {
        font-size: 14px;
        padding: 5px 0 15px;
    }
    .banner-main .carousel-caption .buynow {
        padding: 8px 15px;
        font-size: 14px;
    }
    .about {
        padding: 40px 0;
    }
    .about_box {
        padding: 15px;
    }
    .about_box p {
        font-size: 14px;
        line-height: 24px;
        padding: 10px 0;
    }
    .about_box .about-btn {
        font-size: 14px;
        padding: 8px 20px;
    }
    .about_img img {
        border-radius: 8px;
    }
    .title h2 {
        font-size: 28px;
        max-width: 250px;
    }
    .offer {
        padding: 40px 0;
    }
    .offer_box arse {
        padding: 15px;
    }
    .offer-img img {
        height: 200px;
    }
    .offer-content h3 {
        font-size: 24px;
        padding-bottom: 10px;
    }
    .offer-content p {
        font-size: 14px;
        line-height: 22px;
    }
    .offer-btn {
        font-size: 14px;
        padding: 8px 15px;
    }
    .clients {
        padding: 40px 0;
    }
    .clients_box {
        padding: 15px;
    }
    .testimonial_img img {
        max-width: 120px;
        border-width: 3px;
    }
    .testimonial_content h3 {
        font-size: 20px;
    }
    .testimonial_content .orange_color {
        font-size: 14px;
    }
    .testimonial_border {
        width: 30px;
    }
    .contact {
        padding: 40px 0;
    }
    .contact-header {
        margin-bottom: 20px;
    }
    .contact-title {
        font-size: 28px;
    }
    .contact-subtitle {
        font-size: 16px;
    }
    .map-container iframe {
        height: 300px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .form-group label {
        font-size: 14px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    .footer {
        padding: 50px 0 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-logo-section,
    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }
    .footer-section h3::after,
    .footer-links-section h3::after,
    .footer-contact-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links li,
    .footer-contact li {
        justify-content: center;
    }
    .footer-links li a,
    .footer-contact li a,
    .footer-contact li span {
        font-size: 14px;
    }
    .footer-section h3,
    .footer-links-section h3,
    .footer-contact-section h3 {
        font-size: 20px;
    }
    .footer-logo {
        max-height: 120px;
    }
    .footer-icon {
        font-size: 12px;
        margin-right: 6px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .logo-img {
        height: 60px;
    }
    .navbar-nav .nav-item .nav-link {
        font-size: 15px;
        padding: 8px 0;
        text-align: center;
    }
    .contact-info .nav-item .nav-link {
        font-size: 13px;
        justify-content: center;
        padding: 5px 0;
    }
    .banner-main .carousel-item img {
        height: 450px;
    }
    .banner-main .carousel-caption h1 {
        font-size: 50px;
    }
    .banner-main .carousel-caption span {
        font-size: 28px;
    }
    .banner-main .carousel-caption p {
        font-size: 16px;
        padding: 8px 0 20px;
    }
    .banner-main .carousel-caption .buynow {
        padding: 8px 20px;
        font-size: 15px;
    }
    .about_box p {
        font-size: 15px;
        line-height: 26px;
    }
    .about_box .about-btn {
        font-size: 15px;
        padding: 8px 25px;
    }
    .title h2 {
        font-size: 32px;
        max-width: 300px;
    }
    .offer-img img {
        height: 250px;
    }
    .offer-content h3 {
        font-size: 26px;
    }
    .testimonial_img img {
        max-width: 150px;
    }
    .testimonial_content h3 {
        font-size: 22px;
    }
    .testimonial_content .orange_color {
        font-size: 16px;
    }
    .testimonial_border {
        width: 40px;
    }
    .contact {
        padding: 60px 0;
    }
    .contact-title {
        font-size: 32px;
    }
    .contact-subtitle {
        font-size: 16px;
    }
    .map-container iframe {
        height: 350px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-logo-section {
        grid-column: span 2;
        text-align: center;
    }
    .footer-links-section,
    .footer-contact-section {
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .logo-img {
        height: 70px;
    }
    .banner-main .carousel-item img {
        height: 500px;
    }
    .banner-main .carousel-caption h1 {
        font-size: 60px;
    }
    .banner-main .carousel-caption span {
        font-size: 32px;
    }
    .banner-main .carousel-caption p {
        font-size: 18px;
    }
    .banner-main .carousel-caption .buynow {
        padding: 8px 20px;
        font-size: 15px;
    }
    .title h2 {
        font-size: 36px;
    }
    .offer-content h3 {
        font-size: 26px;
    }
    .testimonial_img img {
        max-width: 160px;
    }
    .testimonial_content h3 {
        font-size: 24px;
    }
    .contact {
        padding: 60px 0;
    }
    .map-container iframe {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-logo-section {
        grid-column: span 2;
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    .banner-main .carousel-caption h1 {
        font-size: 80px;
    }
    .banner-main .carousel-caption span {
        font-size: 36px;
    }
    .banner-main .carousel-caption p {
        font-size: 20px;
    }
    .offer-content h3 {
        font-size: 26px;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}