
footer {
    background: linear-gradient(135deg, #234982 0%, #0d1a3a 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #234982;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }

  .footer-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #234982;
  }

  .footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
  }

  footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    background: #234982;
    transform: translateY(-3px);
  }

  .widget {
    margin-bottom: 30px;
  }
  
  .widget h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .widget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #234982;
  }
  
  .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .widget ul li {
    margin-bottom: 10px;
  }
  
  .widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .widget ul li a:hover {
    color: #234982;
    transform: translateX(5px);
  }
  
  .contact-info {
    margin-bottom: 20px;
  }
  
  .contact-info i {
    color: #234982;
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .subfooter {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .de-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-simple {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
  
  .menu-simple li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
  }
  
  .menu-simple li a:hover {
    color: #234982;
  }

  @media (max-width: 992px) {
    footer {
        padding: 60px 0 0;
    }
    
    .widget {
        margin-bottom: 40px;
    }
  }
  
  @media (max-width: 768px) {
    
    .menu-simple {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
  }

    /* Hide company name on mobile devices */
  @media (max-width: 767px) {
    .company-name {
        display: none;
    }
    
    /* Keep the mobile logo visible */
    .logo-mobile {
        display: block !important;
    }
  }


    /* Google Maps Section Styling */
    .map-section {
        position: relative;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .map-container {
        position: relative;
        height: 500px;
        width: 100%;
        overflow: hidden;
    }
    
    .google-map {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .google-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(20%) contrast(110%) brightness(90%);
        transition: all 0.5s ease;
    }
    
    .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,123,255,0.2) 0%, rgba(0,0,0,0.1) 100%);
        pointer-events: none;
        z-index: 1;
    }
    
    .map-info-box {
        position: absolute;
        bottom: 40px;
        left: 40px;
        background: rgba(255, 255, 255, 0.9);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 2;
        max-width: 350px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s ease;
    }
    
    .map-section:hover .map-info-box {
        transform: translateY(0);
        opacity: 1;
    }
    
    .map-info-box h3 {
        color: #234982;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .map-info-box p {
        color: #333;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .map-info-box i {
        color: #234982;
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
    
    .map-marker {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: #234982;
        font-size: 40px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.1); }
        100% { transform: translate(-50%, -50%) scale(1); }
    }
    
    @media (max-width: 768px) {
        .map-container {
            height: 400px;
        }
        
        .map-info-box {
            left: 20px;
            right: 20px;
            bottom: 20px;
            max-width: none;
        }
    }



    /* Hero Slider Styling */
/* Enhanced Slider Styling (Specific to slider only) */
.hero-slider-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #000;
  }
  
  .hero-slider-section .swiper {
    width: 100%;
    height: 100%;
  }
  
  .hero-slider-section .swiper-slide {
    position: relative;
  }
  
  .hero-slider-section .swiper-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  .hero-slider-section .swiper-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
  }
  
  .hero-slider-section .sw-caption {
    position: relative;
    z-index: 3;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .hero-slider-section .sw-text-wrapper {
    padding-left: 50px;
    position: relative;
  }
  
  .hero-slider-section .border-left {
    border-left: 4px solid #234982;
    padding-left: 20px;
  }
  
  .hero-slider-section .slider-extra {
    color: #234982;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
  }
  
  .hero-slider-section .slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-slider-section .slider-teaser {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 80%;
  }
  
  .hero-slider-section .btn-main {
    background: #234982;
    color: #fff;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #234982;
    text-decoration: none;
  }
  
  .hero-slider-section .btn-main:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
  }
  
  
  
  /* Navigation Arrows */
  .hero-slider-section .swiper-button-prev,
  .hero-slider-section .swiper-button-next {
    color: #fff;
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .hero-slider-section .swiper-button-prev:hover,
  .hero-slider-section .swiper-button-next:hover {
    background: #234982;
    transform: scale(1.1);
  }
  
  .hero-slider-section .swiper-button-prev::after,
  .hero-slider-section .swiper-button-next::after {
    font-size: 24px;
    font-weight: bold;
  }
  
  /* Pagination */
  .hero-slider-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .hero-slider-section .swiper-pagination-bullet-active {
    background: #234982;
    transform: scale(1.3);
  }
  
  /* Image Animation */
  .hero-slider-section .slider-fadeIn img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
    max-width: 90%;
  }
  
  .hero-slider-section .swiper-slide-active .slider-fadeIn img {
    animation: slideInRight 0.8s ease both;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-slider-section {
        height: auto;
        min-height: auto;
        padding: 100px 0;
    }
    
    .hero-slider-section .slider-title {
        font-size: 2.5rem;
    }
    
    .hero-slider-section .sw-text-wrapper {
        padding-left: 0;
        border-left: none;
        padding-top: 30px;
        border-top: 3px solid #234982;
    }
    
    .hero-slider-section .slider-teaser {
        max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .hero-slider-section .slider-title {
        font-size: 2rem;
    }
    
    .hero-slider-section .slider-teaser {
        font-size: 1rem;
    }
    
    .hero-slider-section .btn-main {
        padding: 12px 25px;
    }
    
    .hero-slider-section .swiper-button-prev,
    .hero-slider-section .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-section .slider-fadeIn img {
        max-width: 100%;
        transform: none;
    }
  }
  
  /* Animations */
  @keyframes slideInRight {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(20deg) translateX(100px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-10deg) translateX(0);
    }
  }
  
  /* end slider */


  /* Testimonials Section Styling */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
  }
  
  .testimonials-section .subtitle {
    color: #234982;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
  }
  
  .testimonials-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .testimonials-section .lead {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin: 15px;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    color: #234982;
    opacity: 0.2;
    font-size: 60px;
    line-height: 1;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
  
  .testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #234982;
    margin-right: 20px;
  }
  
  .author-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
  }
  
  .author-info span {
    color: #777;
    font-size: 14px;
  }
  
  .testimonial-rating {
    color: #ffc107;
    margin-top: 5px;
    font-size: 16px;
  }
  
  .owl-3-dots .owl-dots {
    margin-top: 40px !important;
    text-align: center;
  }
  
  .owl-3-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
  }
  
  .owl-3-dots .owl-dot.active span {
    background: #234982;
    transform: scale(1.3);
  }
  
  @media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-card {
        padding: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
  }
  
  /* end client feedback */


   /* Why Choose Us Section Styling */
   .why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #234982 0%, #234982 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.why-choose-us h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #fff;
    margin: 15px auto 0;
}


   /* Team Section Styling */
.why-choose-us2 {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-us2 h2 {
    color: #234982;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.why-choose-us2 h4 {
    color: #234982;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.why-choose-us2 p {
    color: #234982;
    font-weight: 700;
    margin-bottom: 60px;  
    position: relative;
    text-align: center;
}

.why-choose-us2 h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #234982;
    margin: 15px auto 0;
}


.why-choose-us2 .img-fluid {
  width: 250px; 
  height: 250px; 
  object-fit: cover; 
  object-position: center; 
  display: block; 
  margin: 0 auto; 
}

.why-choose-us2 .col-lg-3 {
  margin-bottom: 20px;
}

.team-image-container {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px; 
}

.team-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #234982;
    font-size: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: #234982;
    color: #fff;
}

.benefit-card h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.owl-4-dots .owl-dots {
    margin-top: 40px !important;
    text-align: center;
}

.owl-4-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.owl-4-dots .owl-dot.active span {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}


@media (max-width: 992px) {
    .why-choose-us2 {
        padding: 80px 0;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-us2 {
        padding: 60px 0;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* end why choose us */



 /* CEO Section Styling */
 #ceo-section {
    padding: 100px 0;
    position: relative;
    background: #f8f9fa;
  }
  
  #ceo-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  
  #ceo-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #234982;
    margin: 15px auto 0;
  }
  
  .ceo-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #fff;
  }
  
  .ceo-content {
    padding: 60px;
    position: relative;
    z-index: 2;
  }
  
  .ceo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a6c 0%, #234982 100%);
    opacity: 0.9;
    z-index: 1;
  }
  
  .ceo-message {
    color: #000;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
  }
  
  .ceo-image-container {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .ceo-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .ceo-name {
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
    font-size: 1.5rem;
    color: #000000;
  }
  
  .ceo-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    color: #000000;
  }
  
  .ceo-btn {
    background: #fff;
    color: #234982;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
  }
  
  .ceo-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 992px) {
    .ceo-content {
        padding: 40px;
    }
    
    .ceo-message {
        font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    #ceo-section {
        padding: 60px 0;
    }
    
    .ceo-image {
        width: 180px;
        height: 180px;
        margin-bottom: 30px;
    }
    
    .ceo-content {
        padding: 30px;
    }
    
    .ceo-message {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .ceo-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
    }
  }
  
  /* end ceo section */


 /* Products Section Styling */
 #section-products {
    padding: 100px 0;
    background: linear-gradient(135deg, #234982 0%, #234982 100%);
    position: relative;
    overflow: hidden;
  }
  
  #section-products h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
  }
  
  #section-products h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #fff;
    margin: 15px auto 0;
  }
  
  .product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    height: 100%;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .product-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  .product-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;
  }
  
  .product-card:hover .product-overlay {
    opacity: 1;
  }
  
  .product-overlay-content {
    text-align: center;
    padding: 20px;
    color: #fff;
  }
  
  .product-overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .product-overlay-content p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .product-body {
    padding: 25px;
    text-align: center;
  }
  
  .product-body h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .product-btn {
    display: inline-block;
    background: #234982;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #234982;
  }
  
  .product-btn:hover {
    background: transparent;
    color: #234982;
    transform: translateY(-3px);
  }
  
  .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
  }
  
  @media (max-width: 992px) {
    .product-image-container {
        height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    #section-products {
        padding: 60px 0;
    }
    
    .product-image-container {
        height: 250px;
    }
  }

  /* Product section ends */


  /* Services Section Styling */
 #section-services {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
  }
  
  #section-services h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
  }
  
  #section-services h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #234982;
    margin: 15px auto 0;
  }
  
  .service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .service-header {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .service-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .service-card:hover .service-header img {
    transform: scale(1.05);
  }
  
  .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  
  .service-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .service-body {
    padding: 30px;
    background: #fff;
    position: relative;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: #234982;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  }
  
  .service-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .service-btn {
    display: block;
    text-align: center;
    background: #234982;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .service-btn:hover {
    background: #0069d9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
  }

  /* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #234982;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #234982;
}

/* End scroll to top */
  
  @media (max-width: 992px) {
    .service-header {
        height: 180px;
    }
  }
  
  @media (max-width: 768px) {
    #section-services {
        padding: 60px 0;
    }
    
    .service-header {
        height: 220px;
    }
  }
  
  /* end service section */


   /* About Section Styling */
   #section-aboutus {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

#section-aboutus .subtitle {
    color: #234982;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

#section-aboutus h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

#section-aboutus h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #234982;
}

#section-aboutus p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

#section-aboutus img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

#section-aboutus img:hover {
    transform: translateY(-10px);
}

.about-features {
    margin-top: 30px;
}

.feature-box {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background: #234982;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.feature-content h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.btn-about {
    background: #234982;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-about:hover {
    background: #0069d9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
    color: #fff;
}

.about-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    background: #234982;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Compact About Section */
.compact-about {
padding: 20px 0;
}

.compact-about h4 {
font-size: 1.5rem;
margin-bottom: 15px;
}

.compact-about p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
}

.compact-about .about-features {
margin-top: 20px;
}

.compact-about .feature-box {
margin-bottom: 15px;
}

.compact-about .feature-icon {
width: 50px;
height: 50px;
font-size: 20px;
margin-right: 15px;
}

.compact-about .feature-content h4 {
font-size: 1rem;
margin-bottom: 5px;
}

.compact-about .feature-content p {
font-size: 13px;
}

.compact-about .btn-about {
padding: 10px 25px;
font-size: 14px;
margin-top: 5px;
}

@media (max-width: 768px) {
    #section-aboutus {
        padding: 60px 0;
    }
    
    #section-aboutus img {
        margin-bottom: 30px;
    }
    
    .about-badge {
        top: 20px;
        right: 20px;
    }
}

/* end about section */



 /* Contact Form Styling */
 #section-contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#section-contact h2 {
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

#section-contact h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #234982;
    margin: 15px auto 0;
}

#section-contact p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

#contact_form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.field-set {
    margin-bottom: 20px;
}

.field-set .d-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

#contact_form input,
#contact_form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

#contact_form input:focus,
#contact_form textarea:focus {
    border-color: #234982;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

#contact_form textarea {
    min-height: 150px;
    resize: vertical;
}

#send_message {
    background: #234982;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

#send_message:hover {
    background: #0069d9;
    transform: translateY(-2px);
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-box div {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-info-box div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-box i {
    color: #234982;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.success, .error {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    display: none;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.g-recaptcha {
    margin: 20px 0;
}

/* end contact form */
