@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Montserrat';
    /* font-family: 'Roboto', sans-serif; */

    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}



/* Parent class of all content */

#section-content {
    padding-top: 20px;
    /* Adjust as necessary */
}




/* <---------------------Header CSS------------------> */
#navbar {
    background-color: #ffffff;
    min-height: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}



#navbar .navbar-nav .nav-link {
    font-weight: bold;
    color: #00102b;
    font-size: 18px;
    margin: 0 30px;
    text-transform: uppercase;
    transition: color 0.3s;
}

#navbar .navbar-nav .headtab:hover {
    color: #F26C0D !important;
    border-bottom: 1px solid #F26C0D;
}

#navbar .btn-contact {
    font-size: 18px;
    color: #F26C0D;
    background-color: #ffffff;
    border: 2px solid #F26C0D;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
}

#navbar .btn-contact:hover {
    background: #F26C0D;
    color: #fff;
    animation: none;
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 108, 13, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(242, 108, 13, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 108, 13, 0);
    }
}

@keyframes colorChange {

    0%,
    100% {
        background-color: #F26C0D;
        color: #ffffff;
    }

    50% {
        background-color: #ffff;
        color: #F26C0D;
    }
}


@media (max-width: 767px) {
    #navbar .navbar-nav {
        text-align: center;
    }

    #navbar .navbar-nav .nav-item {
        display: block;
        /* margin: 10px 0; Adjust vertical margin */
        text-align: center;
    }

    #navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}


/* <---------------------Footer CSS------------------> */

#footer {
    background-color: #00102b;
    color: #fff;
    padding: 40px 25px 20px 25px;
}

#footer h5 {
    /* color: #ffffff; */
    font-weight: bold;
    text-transform: uppercase;
}

#footer .border-line {
    width: 50px;
    height: 3px;
    background-color: #F26C0D;
    margin: 10px auto 25px auto;
}

#footer a {
    color: #ffffff;
    transition: color 0.3s;
}

#footer hr{
    background-color: #9f9f9f;
}

#footer a:hover {
    color: #F26C0D;
    text-decoration: none;
}

#footer .list-inline-item {
    margin-right: 10px;
}

#footer .list-inline-item a {
    font-size: 1.5rem;
}

#footer address {
    margin: 0;
}

#footer p {
    margin: 0 0 10px;
}

#footer .usefullink li {
    line-height: 2.5;
}

#footer .flogo{
    background-color: #ffffff;
    padding: 5px 10px ;
    border-radius: 10px;
}

#footer .address {
    display: flex;
    flex-direction: column;
}

#footer .address p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#footer .address p i {
    background-color: #F26C0D;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 10px;
    flex-shrink: 0;
}

#footer .address p a {
    word-break: break-word;
    overflow-wrap: break-word;
}

#footer .socialicon i {
    background-color: #F26C0D;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .socialicon i:hover {
    scale: 1.05;
    color: #343a40;
}

@media (max-width: 767px) {
    #footer .footer-links {
        display: flex;
        flex-wrap: wrap;
    }

    #footer .footer-links .col-md-6 {
        flex: 1;
        min-width: 50%;
    }
}


/* Floating Action Buttons Styles */
#footer .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#footer .floating-buttons a {
    display: block;
    margin-bottom: 10px; /* Space between buttons */
}

#footer .floating-buttons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F26C0D; /* Button background color */
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

#footer .floating-buttons a:hover img {
    background-color: #F26C0D; /* Button hover color */
    transform: scale(1.1); /* Slight zoom effect on hover */
}




/* Ensure the section takes up full height and is centered */
#section1 {
    position: relative;
    height: 90vh;
    background: url('./images/content/Homebanner.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    align-items: center;
}

#section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darken the image */
    z-index: 1; /* Ensure it's behind the text */
}

#section1 .text-container {
    position: relative;
    z-index: 2; /* Ensure text is above the overlay */
    color: #fff;
}

#section1 .text-container h1 {
    font-size: 2.8rem;
    font-weight: bold;
}

#section1 .text-container .highlight {
    background: linear-gradient(
        90deg,
        #F26C0D 0%,
        #FFD700 50%,
        #F26C0D 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
}

@keyframes shineText {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}

#section1 .text-container p {
    font-size: 1.5rem;
}


#section1 .homebutton {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: #F26C0D;
    padding: 14px 34px;
    border: 2px solid #fff;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(242,108,13,0.5);
    animation: pulseBorder 2s infinite;
}

#section1 .homebutton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );
    animation: buttonShine 3s infinite;
}

#section1 .homebutton:hover {
    background: #fff;
    color: #F26C0D;
    transform: translateY(-3px);
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(242,108,13,0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(242,108,13,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242,108,13,0);
    }
}

@keyframes buttonShine {
    100% {
        left: 150%;
    }
}


/* Features Section Styles */
#section2 {
    background-color: #f8f9fa;
    padding: 40px 0 20px 0;
}

#section2 .feature-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#section2 .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#section2 .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

#section2 .feature-card h3 {
    font-size: 1.5rem;
    color: #F26C0D;
    font-weight: bold;
    margin-bottom: 15px;
}

#section2 .feature-card p {
    font-size: 1rem;
    color: #333;
}


/* Section 3 */

#section3 {
    padding: 40px 0;
    background-color: #ffffff;
}

#section3 h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#section3 .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0px auto 40px auto;
}

#section3 .about-image img {
    width: 100%;
    height: 350px;
    border-radius: 5px;
    background-color: transparent;
}

#section3 .about-content {
    padding: 30px;
}

#section3 .about-content p {
    text-align: justify;
    margin-bottom: 15px;
}

#section3 .btn{
    color: #F26C0D;
    background-color: #ffffff;
    border: 1px solid #F26C0D;
    border-radius: 25px;
}

#section3 .btn:hover{
    color: #ffff;
    background-color: #F26C0D;
}


/* Section 4 */

/* Section 4 */
#section4 {
    padding: 40px 0;
    background-color: #f8f9fa;
}

#section4 h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#section4 .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0px auto 40px auto;
}

#section4 .service-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0; /* Remove padding to make the image cover the card */
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure content does not overflow the card */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the card */
}




#section4 .service-image {
    position: relative;
    width: 100%;
    height: 200px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; 
}
#section4 .service-card:hover .service-image {
    transform: scale(1.05);
    cursor: pointer;
}

#section4 .gradient-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}

#section4 .gradient-bar h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}


/* Section 5 */
#section5.orange-strip {
    background-color: #F26C0D;
    color: #ffffff;
    padding: 40px 0;
}

#section5 h2 {
    font-size: 35px;
    font-weight: bold;
}


/* Section 6 - Our Clients */
#section6 {
    padding: 40px 0;
    background-color: #f8f9fa;
}

#section6 h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#section6 .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 40px auto;
}

#section6 .clients-section {
    overflow: hidden;
    position: relative;
}

#section6 .client-marquee {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

#section6 .client-logos {
    display: flex;
    animation: marquee 30s linear infinite;
}

#section6 .client-logos img {
    margin: 0 40px;
    background-color: #fff;
    border-radius: 10px;
    height: 100px;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


#section6 .testimonial-card {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Faded shadow on all sides */
}

#section6 .testimonial-card p {
    font-style: italic;
    font-size: 1rem;
}

#section6 .blockquote-footer {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #777;
}

#section6 .img-fluid {
    max-width: 150px;
    border-radius: 50%;
    /* border: 2px solid #28a745; */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


#section7.history-section {
    background-color: #ffffff;
    padding: 40px 0;
}

#section7 h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#section7 .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 40px auto;
}

#section7 .history-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
    padding: 15px;
}

#section7 .history-card img {
    width: 100%; /* Make the image span the full width */
    height: auto; /* Maintain the aspect ratio */
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

#section7 .history-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #F26C0D;
}

#section7 .history-card p {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 767.98px) {
    #section7 .history-card img {
        width: 100%; /* Ensure image is responsive on smaller screens */
        height: auto;
    }
}


/* Section 8 */
#section8 {
    background-color: #f8f9fa;
    padding: 40px 0;
}

#section8 h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#section8 .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#section8 .row {
    padding-top: 25px;
}

#section8 .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Updated shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#section8 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#section8 .card-img-top {
    width: 100%;
    height: 250px;
}

#section8 .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#section8 .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

#section8 .card-text {
    font-size: 0.875rem;
    flex-grow: 1;
}

#section8 .card-link {
    color: inherit;
    text-decoration: none;
}

#section8 .d-flex {
    align-items: center;
}

#section8 .text-muted {
    font-size: 0.875rem;
    color: #777;
}

#section8 .fa-calendar-alt {
    color: #F26C0D;
    font-size: 1rem;
    margin-right: 5px;
}


/* Section 9 */
#section9.orange-strip {
    background-color: #F26C0D;
    color: #ffffff;
    padding: 40px 0;
}

#section9 h2 {
    font-size: 35px;
    font-weight: bold;
}


/* <======================================= Privacy css =======================================>*/

#privacy-section {
    padding: 40px 0;
    background-color: #ffff;
}

#privacy-section h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    text-align: center;
}

#privacy-section .border-line {
    width: 80px;
    height: 3px;
    background-color:  #F26C0D;
    margin: 0 auto 30px auto;
}

#privacy-section .outerrow {
    /* padding-top: 25px; */
}

#privacy-section h3 {
    font-size: 20px;
    /* text-decoration: underline; */
    text-transform: uppercase;
    color:  #F26C0D;
    /* margin-top: 20px; */
}

#privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

#privacy-section ul {
    margin-bottom: 20px;
}

#privacy-section ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-left: 20px;
    color: #666;
}

#privacy-section a {
    color:  #F26C0D;
    text-decoration: none;
}

#privacy-section a:hover {
    text-decoration: underline;
}



/* <======================================= Terms css =======================================>*/

#termncondition-section {
    padding: 40px 0;
    background-color: #ffffffff;
}

#termncondition-section h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    text-align: center;
}

#termncondition-section .border-line {
    width: 80px;
    height: 3px;
    background-color:  #F26C0D;
    margin: 0 auto 30px auto;
}

#termncondition-section .outerrow {
    /* padding-top: 25px; */
}

#termncondition-section h3 {
    font-size: 20px;
    color:  #F26C0D;
    text-align: justify;
    text-transform: uppercase;
}

#termncondition-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

#termncondition-section ul {
    margin-bottom: 20px;
}

#termncondition-section ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-left: 20px;
    color: #666;
}

#termncondition-section a {
    color:  #F26C0D;
    text-decoration: none;
}

#termncondition-section a:hover {
    text-decoration: underline;
}



/* about us  */

#about-section {
    padding: 40px 0;
    background-color: #ffff;
}

#about-section h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    text-align: center;
}

#about-section .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#about-section .outerrow {
    padding-top: 25px;
}

#about-section .about-image img {
    width: 100%;
    height: 450px;
    background-color: transparent;

}

#about-section .about-content {
    /* padding: 30px; */
}

#about-section .about-content p {
    text-align: justify;
    margin-bottom: 15px;
}


#about-section2.green-strip {
    background-color: #F26C0D;
    color: #ffffff;
    padding: 40px 0;
}

#about-section2 h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

#about-section2 p {
    font-size: 18px;
    margin-bottom: 20px;
}

#about-section2 .btn {
    font-size: 1.25rem;
    padding: 10px 20px;
    border-width: 2px;
}

#about-section3 {
    padding: 40px 0;
    background-color: #f8f9fa; /* Light gray background */
}

#about-section3 h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    text-align: center;
}

#about-section3 .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#about-section3 .row {
    /* padding-top: 25px; */
}

#about-section3 .value-box {
    padding: 20px;
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#about-section3 .value-box .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    color: #F26C0D;
}

#about-section3 .value-box h4 {
    font-size: 20px;
    font-weight: bold;
    color: #F26C0D;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#about-section3 .value-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

#service-approach-section {
    padding: 40px 0;
    background-color:#f8f9fa;
}

#service-approach-section h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    text-align: center;
}

#service-approach-section .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#service-approach-section .outerrow {
    padding-top: 25px;
}

#service-approach-section .service-approach-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    display: flex; /* Flexbox for aligning items */
}

#service-approach-section .service-approach-item .icon-wrapper {
    flex: 0 0 20%; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

#service-approach-section .service-approach-item .icon-wrapper i {
    font-size: 2.5em;
    color: #F26C0D;
}

#service-approach-section .service-approach-item .content-wrapper {
    flex: 1;
    padding-left: 20px;
}

#service-approach-section .service-approach-item h4 {
    font-size: 20px;
    color: #F26C0D;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#service-approach-section .service-approach-item p {
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    color: #666;
}


/* <======================================= Contact css =======================================>*/

#contact-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

#contact-section h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
    
}

#contact-section .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#contact-section .outerrow {
    /* padding-top: 25px; */
}

#contact-section .info-box {
    background-color: #fff;
    color: #000;
    padding: 20px;
    /* border: 0.1px solid #28a745; */
    /* margin-bottom: 20px; */
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    height: 100%;
}

#contact-section .info-box .icon {
    font-size: 2rem;
    color:  #F26C0D;
    margin-bottom: 15px;
}

#contact-section .info-box h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

#contact-section .info-box p {
    margin: 0;
    font-size: 1rem;
}
#contact-section .info-box p a {
 color: #F26C0D;
}

#contact-section .contact-form {
    background-color: #fff;
    color: #343a40;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-section .contact-form h3 {
    font-size: 1.4rem;
    background-color: #F26C0D;
    color: #fff;
    padding: 8px;
    border-radius: 25px;
    /* color:  #28a745; */
    text-transform: uppercase;
    margin-bottom: 20px;
}

#contact-section .contact-form .form-control {
    border-radius: 5px;
    margin-bottom: 15px;
}


#contact-section .btn{
    color: #F26C0D;
    background-color: #ffffff;
    border: 1px solid #F26C0D;
    border-radius: 25px;
}

#contact-section .btn:hover{
    color: #ffff;
    background-color: #F26C0D;
}


@media (max-width: 767px) {
    #contact-section .info-box {
        margin-bottom: 10px;
    }
}




/* <======================================= Blogs And Detail Page css =======================================>*/

#blogs {
    background-color: #ffffff;
    padding: 40px 0;
}

#blogs h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#blogs .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#blogs .row {
    padding-top: 25px;
}

#blogs .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#blogs .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#blogs .card-img-top {
    width: 100%;
    height:250px ;
}

#blogs .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#blogs .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

#blogs .card-text {
    font-size: 0.875rem;
    flex-grow: 1;
}

#blogs .card-link {
    color: inherit;
    text-decoration: none;
}

#blogs .d-flex {
    align-items: center;
}

#blogs .text-muted {
    font-size: 0.875rem;
    color: #777;
}

#blogs .fa-calendar-alt {
    color: #F26C0D;
    font-size: 1rem;
    margin-right: 5px;
}

#blog-view {
    background-color: #ffffff;
    padding: 40px 0 0px 0;
}

#blog-view h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#blog-view .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#blog-view .row{
padding-top: 25px;
}

#blog-view .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#blog-view .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#blog-view .card-img-top {
    width: 100%;
    height: 400px;
}

#blog-view .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#blog-view .bread{
    color: #F26C0D;
}

#blog-view .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

#blog-view .card-text {
    font-size: 0.875rem;
    flex-grow: 1;
}

#blog-view .card-link {
    color: inherit;
    text-decoration: none;
}

#blog-view .d-flex {
    align-items: center;
}

#blog-view .text-muted {
    font-size: 0.875rem;
    color: #777;
}

#blog-view .fa-calendar-alt {
    color: #F26C0D;
    font-size: 1rem;
    margin-right: 5px;
}


#blog-advertise.green-strip {
    background-color: #F26C0D;
    color: #ffffff;
    padding: 40px 0;
}

#blog-advertise h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

#blog-advertise p {
    font-size: 18px;
    margin-bottom: 20px;
}

#blog-advertise .btn {
    font-size: 1.25rem;
    padding: 10px 20px;
    border-width: 2px;
}

/* <======================================= Services css =======================================>*/

#services {
    background-color: #ffffff;
    padding: 40px 0;
}

#services h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#services .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#services .row {
    padding-top: 25px;
}

#services .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#services .card-img-top {
    width: 100%;
    height:250px ;
}

#services .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#services .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #F26C0D;
}

#services .card-text {
    font-size: 0.875rem;
    flex-grow: 1;
}

#services .card-link {
    color: inherit;
    text-decoration: none;
}

#services .d-flex {
    align-items: center;
}

#services .card-footer{
    background-color: #F26C0D;
    
}

#services .card-footer .btn{
    border-radius: 25px;
}

#service-advertise.green-strip {
    background-color: #F26C0D;
    color: #ffffff;
    padding: 40px 0;
}

#service-advertise h2 {
    font-size: 35px;
    font-weight: bold;

}

/* <======================================= Service View CSS =======================================> */

#serviceview-section {
    padding: 40px 0;
    background-color: #ffffff;
}

#serviceview-section h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#serviceview-section .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#serviceview-section .bread{
color: #F26C0D;
}

#serviceview-section .outerrow {
    padding-top: 25px;
}

#serviceview-section .service-image {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 20px;
}

#serviceview-section .service-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #F26C0D;
    text-align: center;
    margin-bottom: 15px;
}

#serviceview-section .service-description {
    font-size: 1rem;
    text-align: justify;
    color: #00102b;
}



#serviceview-section .contact-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#serviceview-section .contact-form {
    background-color: #fff;
    color: #343a40;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#serviceview-section .contact-form h3 {
    font-size: 1.4rem;
    background-color: #F26C0D;
    color: #fff;
    padding: 8px;
    border-radius: 25px;
    /* color:  #28a745; */
    text-transform: uppercase;
    margin-bottom: 20px;
}

#serviceview-section .contact-form .form-control {
    border-radius: 5px;
    margin-bottom: 15px;
}


#serviceview-section .btn{
    color: #F26C0D;
    background-color: #ffffff;
    border: 1px solid #F26C0D;
    border-radius: 25px;
}

#serviceview-section .btn:hover{
    color: #ffff;
    background-color: #F26C0D;
}
#service-advertise.orange-strip {
    background-color: #F26C0D;
    color: #ffffff;
    padding: 20px 0;
}

#service-advertise h2 {
    font-size: 35px;
    font-weight: bold;
}

#techniques {
    padding: 40px 0;
}

#techniques h2 {
    font-weight: bold;
    font-size: 35px;
    color: #00102b;
    text-transform: uppercase;
}

#techniques .border-line {
    width: 80px;
    height: 3px;
    background-color: #F26C0D;
    margin: 0 auto 30px auto;
}

#techniques .value-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#techniques .value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#techniques .value-box .icon {
    display: block;
    margin-bottom: 15px;
}

#techniques .value-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F26C0D;
    margin-bottom: 10px;
}

#techniques .value-box p {
    font-size: 1rem;
    color: #00102b;
}