* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    background: #0c5b94;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px;
}

.certified-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    flex-shrink: 0;
}

.logo-img {
    max-height: 100px;
    width: auto;
    padding: 5px 0;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links > li > a {
    display: block;
    padding: 20px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-links > li:hover > a,
.nav-links > li.active > a {
    color: #0c5b94;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-dropdown-menu li a:hover {
    background: #f5f7fa;
    color: #0c5b94;
    padding-left: 25px;
}

.custom-submenu {
    position: relative;
}

.custom-submenu-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.custom-submenu:hover .custom-submenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0c5b94;
    padding: 10px;
    z-index: 1001;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}




/* Footer Styles */
.footer {
    background: #0C5B94;
    color: #fff;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col {
    width: 100%;
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
    margin-bottom: 10px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffd700;
    color: #0C5B94;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    color: #fff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    color: #ffd700;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.contact-list li i {
    color: #ffffff;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-list li span {
    flex: 1;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.contact-list li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.design-by i {
    color: #ffd700;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col h3 {
        text-align: left;
    }
    
    .footer-col h3::after {
        left: 0;
        transform: none;
    }
}













/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.faq-header h2 span {
    color: #0c5b94;
    position: relative;
}

.faq-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.faq-header p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f5f7fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #f5f7fa;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: #0c5b94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #fff;
    font-size: 14px;
}

.faq-item.active .faq-question {
    background: #0c5b94;
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-toggle {
    background: #fff;
}

.faq-item.active .faq-toggle i {
    color: #0c5b94;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    background: #f5f7fa;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 32px;
    }
    
    .faq-header p {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}
















@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #fff;
        z-index: 1000;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .nav-links > li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-links > li > a {
        display: block;
        padding: 14px 20px;
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: left;
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }
    
    .custom-dropdown-menu,
    .custom-submenu-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        width: 100%;
        background: #f9f9f9;
    }
    
    .custom-dropdown.active .custom-dropdown-menu,
    .custom-submenu.active .custom-submenu-dropdown {
        display: block;
    }
    
    .custom-dropdown-toggle,
    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .custom-dropdown-toggle i,
    .submenu-toggle i {
        margin-left: auto;
    }
    
    .custom-dropdown-menu li a,
    .custom-submenu-dropdown li a {
        padding: 10px 20px;
        display: block;
        text-align: left;
    }
	
	.header-top
 {
    display: none;
}

.logo-img {
    max-height: 100px;
}
}





/*Banner*/


/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 600px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 1000px;
    padding: 60px 0;
    color: #fff;
    text-align: left;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content h1 span {
    color: #ffd700;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0c5b94;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.slide-content .btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    gap: 15px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.slider-arrow:hover {
    background: #144395;
    color: #ffffff;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0C5B94;
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: #0C5B94;
}

/* Fallback colors if no images */
.slide:nth-child(1) .slide-bg {
    background: linear-gradient(135deg, #0c5b94 0%, #06426b 100%);
}
.slide:nth-child(2) .slide-bg {
    background: linear-gradient(135deg, #1a472a 0%, #0e2a1a 100%);
}
.slide:nth-child(3) .slide-bg {
    background: linear-gradient(135deg, #8B4513 0%, #5a2d0c 100%);
}
.slide:nth-child(4) .slide-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .slide {
        min-height: 500px;
    }
    
    .slide-content {
        max-width: 550px;
    }
    
    .slide-content h1 {
        font-size: 42px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 450px;
    }
    
    .slide {
        min-height: 450px;
    }
    
    .slide-content {
        text-align: left;
        max-width: 100%;
        padding: 40px 0;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slide-content .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
    }
    
    .slide {
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
	
	
	.slide-content {
    width: 350px;
	}
}





/*aout */



/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: #fff;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Content */
.welcome-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.welcome-content h2 span {
    color: #0c5b94;
}

.welcome-content h3 {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0c5b94;
    display: inline-block;
}

.welcome-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-content h4 {
    font-size: 20px;
    color: #0c5b94;
    margin: 25px 0 15px;
}

.welcome-content strong {
    color: #333;
}

/* Right Form */
.welcome-form {
    position: sticky;
    top: 100px;
}

.form-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(12, 91, 148, 0.1);
}

.form-card h3 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
}

.form-card h3 span {
    color: #0c5b94;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.quote-form .form-group {
    margin-bottom: 18px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #0c5b94;
    box-shadow: 0 0 0 3px rgba(12, 91, 148, 0.1);
}

.quote-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c5b94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #0c5b94;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ffffff;
    color: #0c5b94;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-content h2 {
        font-size: 28px;
    }
    
    .welcome-content h3 {
        font-size: 16px;
    }
    
    .welcome-content h4 {
        font-size: 18px;
    }
    
    .form-card {
        padding: 25px;
    }
    
    .form-card h3 {
        font-size: 20px;
    }
    
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
.success-message {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.error-message {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.success-message i, .error-message i {
    font-size: 24px;
}

.success-message p, .error-message p {
    margin: 0;
    flex: 1;
}

.close-msg {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    margin-left: auto;
    padding: 0 5px;
}

.close-msg:hover {
    opacity: 1;
}






/* Services Section with Background Image */
.services-section-new {
    position: relative;
    padding: 80px 0;
   background-image: url('../images/ser.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    z-index: 1;
}

.services-section-new .container {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
}

.services-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* Services Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card-new {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-img-new {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-img-new img {
    transform: scale(1.05);
}

.service-content-new {
    padding: 25px;
}

.service-content-new h3 {
    font-size: 22px;
    color: #0c5b94;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content-new p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-link-new {
    color: #0c5b94;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link-new:hover {
    color: #000;
    gap: 12px;
}

/* View All Button */
.services-footer {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0c5b94;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.view-all-btn:hover {
    background: #fff;
    gap: 15px;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-section-new {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .services-header h2 {
        font-size: 32px;
    }
    
    .services-header p {
        font-size: 16px;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-img-new {
        height: 200px;
    }
    
    .service-content-new {
        padding: 20px;
    }
    
    .service-content-new h3 {
        font-size: 20px;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-img-new {
        height: 180px;
    }
}




/* Why Us Section */
.whyus-section {
    padding: 80px 0;
    background: #fff;
}

.whyus-header {
    text-align: center;
    margin-bottom: 50px;
}

.whyus-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.whyus-header h2 span {
    color: #0c5b94;
    position: relative;
}

.whyus-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.whyus-header p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Why Us Grid */
.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.whyus-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.whyus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.whyus-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyus-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whyus-card h3 {
    font-size: 20px;
    color: #0c5b94;
    margin-bottom: 15px;
    font-weight: 600;
}

.whyus-card p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .whyus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .whyus-section {
        padding: 50px 0;
    }
    
    .whyus-header h2 {
        font-size: 32px;
    }
    
    .whyus-header p {
        font-size: 16px;
    }
    
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whyus-card {
        padding: 30px 25px;
    }
    
    .whyus-img {
        width: 70px;
        height: 70px;
    }
}






/* Counter Cards Section with Background Image */
.counter-cards-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/count.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Overlay for dark effect */
.counter-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 12%);
    z-index: 0;
}

.counter-cards-section .container {
    position: relative;
    z-index: 1;
}

.counter-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.counter-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.counter-card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-card-image img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.counter-card-number {
    font-size: 42px;
    font-weight: 700;
    color: #0c5b94;
    margin-bottom: 10px;
}

.counter-card-number span {
    font-size: 42px;
    font-weight: 700;
    color: #0c5b94;
}

.counter-card-title {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .counter-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .counter-cards-section {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .counter-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .counter-card {
        padding: 30px 15px;
    }
    
    .counter-card-image {
        width: 60px;
        height: 60px;
    }
    
    .counter-card-number {
        font-size: 32px;
    }
    
    .counter-card-number span {
        font-size: 32px;
    }
    
    .counter-card-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .counter-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}






/* Pest Types Section */
.pest-types-section {
    padding: 80px 0;
    background: #fff;
}

.pest-types-header {
    text-align: center;
    margin-bottom: 50px;
}

.pest-types-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.pest-types-header h2 span {
    color: #0c5b94;
    position: relative;
}

.pest-types-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.pest-types-header p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Pest Types Grid */
.pest-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pest-type-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pest-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pest-type-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.pest-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pest-type-card:hover .pest-type-image img {
    transform: scale(1.05);
}

.pest-type-content {
    padding: 25px;
}

.pest-type-content h3 {
    font-size: 22px;
    color: #0c5b94;
    margin-bottom: 15px;
    font-weight: 600;
}

.pest-type-content p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.pest-type-btn {
    color: #0c5b94;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pest-type-btn:hover {
    color: #ffd700;
    gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .pest-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pest-types-section {
        padding: 50px 0;
    }
    
    .pest-types-header h2 {
        font-size: 32px;
    }
    
    .pest-types-header p {
        font-size: 16px;
    }
    
    .pest-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pest-type-image {
        height: 200px;
    }
    
    .pest-type-content {
        padding: 20px;
    }
    
    .pest-type-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pest-type-image {
        height: 180px;
    }
}









/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding: 80px 0;
    background-image: url('assets/images/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 91, 148, 0.9);
    z-index: 1;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonial-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
}

.testimonial-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* Testimonial Slider */
.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeEffect 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content i.fa-quote-left {
    font-size: 40px;
    color: #ffd700;
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.3;
	    display: none;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 20px;
    color: #0c5b94;
    margin-bottom: 10px;
    font-weight: 600;
	
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 16px;
    margin: 0 2px;
}

/* Navigation Arrows */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #ffffff;
    color: #0c5b94;
}

/* Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 30px;
	display: none;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #ffd700;
    width: 30px;
    border-radius: 10px;
}

.testimonial-dots .dot:hover {
    background: #ffd700;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-prev {
        left: -40px;
    }
    .testimonial-next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .testimonial-header h2 {
        font-size: 32px;
    }
    
    .testimonial-header p {
        font-size: 16px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content i.fa-quote-left {
        font-size: 30px;
        top: 15px;
        left: 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
    
    .testimonial-author h4 {
        font-size: 18px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .testimonial-prev {
        left: -20px;
    }
    
    .testimonial-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .testimonial-prev,
    .testimonial-next {
        display: none;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
}






/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #fff;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.clients-header h2 span {
    color: #0c5b94;
    position: relative;
}

.clients-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.clients-header p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Clients Grid - 6 per row */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.client-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 50px 0;
    }
    
    .clients-header h2 {
        font-size: 32px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-item img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-item {
        padding: 10px;
    }
    
    .client-item img {
        height: 60px;
    }
}


/* CTA Section - Last */
.cta-section-last {
     padding-top: 60px;
    padding-bottom: 60px;
    background: #F5F7FA;
}

.cta-content-last {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-last h2 {
    font-size: 36px;
    color: #0c5b94;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-last p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-contact-text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.cta-btn-last {
    display: inline-block;
    background: #fff;
    color: #0c5b94;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.cta-btn-last:hover {
    background: #0c5b94;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0c5b94;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section-last {
        padding: 50px 20px;
    }
    
    .cta-content-last h2 {
        font-size: 28px;
    }
    
    .cta-content-last p {
        font-size: 16px;
    }
    
    .cta-contact-text {
        font-size: 18px;
    }
    
    .cta-btn-last {
        padding: 12px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-content-last h2 {
        font-size: 24px;
    }
    
    .cta-contact-text {
        font-size: 16px;
    }
}




/* ABIUT PAGE */


/* Inner Banner Section - Left Align */
.inner-banner {
    position: relative;
        padding-top: 150px;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0c5b94; /* Fallback color */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 32%);
    z-index: 1;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

/* Left Align Content */
.banner-content-left {
    max-width: 700px;
    text-align: left;
}

.banner-content-left h1 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-content-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Breadcrumb Left - Hidden */
.breadcrumb-left {
    display: none;
    margin-bottom: 30px;
}

.breadcrumb-left a {
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
}

.breadcrumb-left a:hover {
    text-decoration: underline;
}

.breadcrumb-left .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
}

.breadcrumb-left .current {
    color: #fff;
    font-size: 16px;
}

/* Banner Button Left */
.banner-btn-left {
    margin-top: 10px;
}

.banner-cta-btn {
    display: inline-block;
    background: #fff;
    color: #0c5b94;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.banner-cta-btn:hover {
    background: #ffffff;
    color: #0c5b94;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .inner-banner {
        padding: 60px 0;
        height: auto;
        min-height: 400px;
        display: flex;
        align-items: center;
    }
    
    .banner-content-left {
        text-align: left;
    }
    
    .banner-content-left h1 {
        font-size: 32px;
    }
    
    .banner-content-left p {
        font-size: 16px;
    }
    
    .breadcrumb-left a,
    .breadcrumb-left .separator,
    .breadcrumb-left .current {
        font-size: 14px;
    }
    
    .banner-cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .inner-banner {
        min-height: 350px;
        padding: 40px 0;
    }
    
    .banner-content-left h1 {
        font-size: 28px;
    }
    
    .banner-content-left p {
        font-size: 14px;
    }
}



/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: #fff;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Text Content */
.about-text h2 {
    font-size: 32px;
    color: #0c5b94;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}


/* Right Image */
.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 50px 0;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
}

@media (max-width: 480px) {
    .about-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
    }
}

/* Certificate Button */
.certificate-btn-wrapper {
    margin-top: 30px;
}

.certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0c5b94;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.certificate-btn i {
    font-size: 18px;
}

.certificate-btn:hover {
    background: #ededed;
    color: #0c5b94;
    transform: translateY(-3px);
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .certificate-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .certificate-btn i {
        font-size: 16px;
    }
}







.products-grid-section {
    padding-top: 80px;
	padding-bottom:30px;
    background: #f5f7fa;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.products-header h2 span {
    color: #0c5b94;
}

.products-header p {
    font-size: 18px;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    color: #0c5b94;
    margin-bottom: 12px;
}

.product-content p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-header h2 {
        font-size: 32px;
    }
}





/* Products Grid Section */
.products-grid-section {
    padding-top: 60px;
	padding-bottom:30px;
    background: #f5f7fa;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.products-header h2 span {
    color: #0c5b94;
    position: relative;
}

.products-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.products-header p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 18px;
    color: #0c5b94;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.product-content p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid-section {
        padding: 50px 0;
    }
    
    .products-header h2 {
        font-size: 32px;
    }
    
    .products-header p {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-content h3 {
        font-size: 16px;
    }
}



/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: #fff;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Text Content */
.service-text h2 {
    font-size: 32px;
    color: #0c5b94;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f7fa;
    padding: 12px 20px;
    border-radius: 10px;
}

.feature-item i {
    font-size: 22px;
    color: #ffd700;
}

.feature-item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0c5b94;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.service-cta-btn:hover {
    background: #ffd700;
    color: #0c5b94;
    gap: 15px;
    transform: translateY(-3px);
}

/* Right Image */
.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-content-section {
        padding: 50px 0;
    }
    
    .service-text h2 {
        font-size: 28px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
    
    .service-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}



/* Products Section */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.products-section.alt-bg {
    background: #f5f7fa;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.products-header h2 span {
    color: #0c5b94;
    position: relative;
}

.products-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.products-header p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* 4 Grid Layout */
.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 3 Grid Layout */
.products-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Card - No content padding */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1100px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }
    
    .products-header h2 {
        font-size: 32px;
    }
    
    .products-header p {
        font-size: 16px;
    }
    
    .products-grid-4,
    .products-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 220px;
    }
}




/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 115px;
    right: 15px;
    z-index: 999;
    transition: all 0.3s ease;
    display: block;
}

.whatsapp-sticky img {
	    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-sticky:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sticky Certificates */
.sticky-certificates {
    position: fixed;
    bottom: 200px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certificate-link {
    display: block;
    transition: all 0.3s ease;
}

.certificate-link img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 5px;
    object-fit: contain;
}

.certificate-link:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive - Hide on mobile if needed */
@media (max-width: 768px) {
    .whatsapp-sticky img {
        width: 50px;
        height: 50px;
    }
    
    .certificate-link img {
        width: 40px;
        height: 40px;
    }
    
    .sticky-certificates {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .whatsapp-sticky img {
        width: 45px;
        height: 45px;
    }
    
    .certificate-link img {
        width: 35px;
        height: 35px;
    }
    
    .sticky-certificates {
        bottom: 170px;
        right: 15px;
    }
    
    .whatsapp-sticky {
        right: 15px;
        bottom: 95px;
    }
}






/* ============================================
   SERVICE PAGE STYLES (Common for all service pages)
   ============================================ */

/* Content Section (Text + Image) */
.content-section {
    padding: 80px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    color: #0c5b94;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.check-list li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 span {
    color: #0c5b94;
    position: relative;
}

.section-title h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.section-title p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Alternate Background */
.alt-bg {
    background: #f5f7fa;
}

/* Signs Section (6 cards) */
.signs-section {
    padding: 80px 0;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sign-card {
    background: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sign-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.sign-card h3 {
    font-size: 20px;
    color: #0c5b94;
    margin-bottom: 10px;
    font-weight: 600;
}

.sign-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.signs-note {
    margin-top: 40px;
    text-align: center;
    padding: 15px 25px;
    background: #0c5b94;
    color: #fff;
    border-radius: 10px;
}

.signs-note p {
    margin: 0;
    font-size: 16px;
}

/* Types Section (6 cards) */
.types-section {
    padding: 80px 0;
    background: #fff;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-card {
    background: #f5f7fa;
    padding: 30px 25px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.type-card:hover {
    background: #0c5b94;
    transform: translateY(-5px);
}

.type-card:hover i,
.type-card:hover h3,
.type-card:hover p {
    color: #fff;
}

.type-card i {
    font-size: 45px;
    color: #0c5b94;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.type-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.type-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.types-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #555;
}

/* Process Section (4 cards) */
.process-section {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-num {
    width: 60px;
    height: 60px;
    background: #0c5b94;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-size: 18px;
    color: #0c5b94;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.process-note {
    text-align: center;
    margin-top: 40px;
    font-weight: 500;
    color: #555;
}

/* Why Choose Section (5 cards) */
.whychoose-section {
       padding: 60px 0;
}

.whychoose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.whychoose-card {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.whychoose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.whychoose-card i {
    font-size: 45px;
    color: #0c5b94;
    margin-bottom: 15px;
}

.whychoose-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.whychoose-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Property Section (Residential + Commercial) */
.property-section {
    padding: 80px 0;
}

.property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.property-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.property-card h2 {
    font-size: 24px;
    color: #0c5b94;
    margin-bottom: 20px;
    font-weight: 600;
}

.property-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.property-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.property-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.property-card ul li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Preventive Section (6 cards) */
.preventive-section {
    padding: 80px 0;
    background: #fff;
}

.preventive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.preventive-card {
    background: #f5f7fa;
    padding: 30px 25px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.preventive-card:hover {
    background: #0c5b94;
    transform: translateY(-5px);
}

.preventive-card:hover i,
.preventive-card:hover h3,
.preventive-card:hover p {
    color: #fff;
}

.preventive-card i {
    font-size: 45px;
    color: #0c5b94;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.preventive-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preventive-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.preventive-note {
    text-align: center;
    margin-top: 40px;
    font-weight: 500;
    color: #555;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
}

.commitment-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 36px;
    color: #0c5b94;
    margin-bottom: 25px;
    font-weight: 600;
}

.commitment-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.commitment-btn {
    margin-top: 30px;
}

/* White CTA Button */
.cta-btn-white {
    display: inline-block;
    background: #fff;
    color: #0c5b94;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #0c5b94;
    cursor: pointer;
}

.cta-btn-white:hover {
    background: #0c5b94;
    color: #fff;
    transform: translateY(-3px);
    border-color: #0c5b94;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f5f7fa;
    border-radius: 12px;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: #0c5b94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle i {
    color: #fff;
    font-size: 14px;
}

.faq-item.active .faq-question {
    background: #0c5b94;
    border-radius: 12px 12px 0 0;
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-toggle {
    background: #ffffff;
}

.faq-item.active .faq-toggle i {
    color: #0c5b94;
}

.faq-answer {
    display: none;
    padding: 20px 25px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .process-grid,
    .whychoose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .content-grid,
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .signs-grid,
    .types-grid,
    .preventive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .content-section,
    .signs-section,
    .types-section,
    .process-section,
    .property-section,
    .whychoose-section,
    .preventive-section,
    .faq-section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .content-text h2 {
        font-size: 26px;
    }
    
    .signs-grid,
    .types-grid,
    .process-grid,
    .whychoose-grid,
    .preventive-grid {
        grid-template-columns: 1fr;
    }
    
    .sign-card,
    .type-card,
    .process-card,
    .whychoose-card,
    .preventive-card {
        padding: 25px 20px;
    }
    
    .property-card {
        padding: 25px;
    }
    
    .property-card h2 {
        font-size: 22px;
    }
    
    .commitment-content h2 {
        font-size: 28px;
    }
    
    .commitment-content p {
        font-size: 15px;
    }
    
    .cta-btn-white {
        padding: 12px 30px;
        font-size: 14px;
    }
}





/* Treatment Section (Safe & Eco-Friendly Solutions) */
.treatment-section {
    padding: 80px 0;
    background: #fff;
}

.treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.treatment-text h2 {
    font-size: 32px;
    color: #0c5b94;
    margin-bottom: 20px;
    font-weight: 600;
}

.treatment-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.treatment-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.treatment-list li i {
    color: #ffd700;
    font-size: 18px;
}

.treatment-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    .treatment-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .treatment-section {
        padding: 50px 0;
    }
    .treatment-text h2 {
        font-size: 26px;
    }
}




/* Comparison Grid for DIY vs Professional */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.comparison-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.comparison-card.diy h3 {
    color: #dc3545;
}

.comparison-card.professional h3 {
    color: #28a745;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.comparison-card ul li i.fa-times {
    color: #dc3545;
}

.comparison-card ul li i.fa-check {
    color: #28a745;
}

.whychoose-note {
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

.why-choose-service {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}




/* Reverse Layout - Image Left, Content Right */
.content-section-reverse {
    padding: 80px 0;
    background: #fff;
}

.content-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid-reverse .content-image {
    order: 1;
}

.content-grid-reverse .content-text {
    order: 2;
}

@media (max-width: 992px) {
    .content-grid-reverse {
        grid-template-columns: 1fr;
    }
    .content-grid-reverse .content-image {
        order: -1;
    }
}



/* Reverse Layout - Image Left, Content Right */
.content-section-reverse {
    padding: 80px 0;
    background: #fff;
}

.content-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid-reverse .content-image {
    order: 1;
}

.content-grid-reverse .content-text {
    order: 2;
}

@media (max-width: 992px) {
    .content-grid-reverse {
        grid-template-columns: 1fr;
    }
    .content-grid-reverse .content-image {
        order: -1;
    }
}



/* All Services Section */
.all-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 span {
    color: #0c5b94;
    position: relative;
}

.section-title h2 span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
}

.section-title p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Services Grid */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-box-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-box:hover .service-box-image img {
    transform: scale(1.05);
}

.service-box-content {
    padding: 20px;
}

.service-box-content h3 {
    font-size: 18px;
    color: #0c5b94;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-box-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-box-link {
    color: #0c5b94;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-box-link:hover {
    color: #000000;
    gap: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
    .all-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .service-box-image {
        height: 180px;
    }
}


