* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-img {
    height: 40px;
    width: 100%;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2C5AA0, #1E3A8A);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1E3A8A, #2C5AA0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    padding: 12px 24px;
    border: 2px solid #2c5aa0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Background Image and Overlay */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background: url('assets/pest-control.webp') center center/cover no-repeat;
    filter: brightness(0.5) grayscale(0.1);
    animation: hero-bg-zoom 18s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    background: linear-gradient(120deg, rgb(46 46 46 / 70%) 0%, rgb(132 181 255 / 50%) 100%);
}

@keyframes hero-bg-zoom {
    0% {
        transform: scale(1) translateY(0);
        filter: brightness(0.5) grayscale(0.1);
    }
    100% {
        transform: scale(1.08) translateY(-10px);
        filter: brightness(0.6) grayscale(0.15);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Hide hero image in grid since background is now in use */
.hero-image {
    display: none;
}

/* Hero Top Section */
.hero-top {
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 4;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 20px;
}

.hero-top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3); /* semi-transparent black */
    z-index: 1;
    border-radius: 12px;
}

.hero-top > * {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.hero-cta {
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 15px 100px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

/* Hero Content Grid */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    /* font-family: Poppins; */
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.hero-content p {
    font-size: 1.2rem;
    color: #f3f4f6;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* button-container */
.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    max-width: 300px; 
    width: 100%;    
}

.service-button {   
    display: flex;
    align-items: center;
    background-color: #EAEAEA;
    border: 1px solid #ddd;
    border-radius: 50px; 
    padding: 0px 25px; 
    text-decoration: none; 
    color: #000000; 
    font-size: 1.1em; 
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; 
    min-height: 60px; 
    box-sizing: border-box;     
}

.service-button:hover {
    background-color: #ffd700; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); 
}

.icon-wrapper {
    margin-right: 15px; 
    display: flex; 
    align-items: center;
}

.service-button svg {
    width: 40px; 
    height: 40px; 
    transition: color 0.3s ease; 
}

.service-button span {
    text-align: left;
    flex-grow: 1; 
    white-space: nowrap; 
}

.hero-heading {
    text-align: left;
    padding-top: 10px;
}

.hero-heading a{
    color: #FFD700;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .button-container {
        grid-template-columns: 1fr; /* Stack buttons on top of each other on small screens */
    }
}


/* Services Section */
.services {
    padding: 50px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-footer{
    padding-top: 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Or a similar clean font */
    font-size: 2.5em; 
    color: #001f3f; 
    /* margin-bottom: 50px;  */
    /* line-height: 1.3; */
}

.pest-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
    gap: 10px; 
    margin: 0 auto;
    justify-items: center;
}

.pest-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-decoration: none; 
    color: #001f3f; 
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 10px; 
    background-color: #fff; 
    border-radius: 10px; 
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-width: 100px; 
}

.pest-item:hover {
    background-color: #e9ecef; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pest-icon-wrapper {
    margin-bottom: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px; 
    height: 60px; 
}

.pest-item svg {
    width: 48px; 
    height: 48px; 
    /* stroke: #001f3f;  */
    transition: stroke 0.3s ease, fill 0.3s ease; 
}

.pest-item span {
    text-align: center;
    line-height: 1.2;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8em;
    }

    .pest-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Smaller items on mobile */
        gap: 15px;
    }

    .pest-item {
        padding: 10px 5px;
        font-size: 0.9em;
    }

    .pest-item svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .pest-grid-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on very small screens */
    }
}

/* About Section */
.about {
    padding: 40px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about .section-footer {
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #374151;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* testimoanls */
.tesimonals{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 50px;
    background-color: #f8fafc;
}

.testimonals-header {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    color: #1e293b;
    font-size: 2.5rem;
    background-color: #f8fafc;
}

.snip1533 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #9e9e9e;
    display: inline-block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    margin: 35px 10px 10px;
    max-width: 310px;
    min-width: 250px;
    position: relative;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #d2652d;
  }
  
  .snip1533 *,
  .snip1533 *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
  }
  
  .snip1533 figcaption {
    padding: 13% 10% 12%;
  }
  
  .snip1533 figcaption:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: #d2652d;
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -30px;
    width: 60px;
  }
  
  .snip1533 h3 {
    color: #3c3c3c;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
  }
  
  .snip1533 h4 {
    font-weight: 400;
    margin: 0;
    opacity: 0.5;
  }
  
  .snip1533 blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
  }

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo{
    padding-bottom:20px;
}

.footer-logo-img{
    height: 50px;
}

.footer-content {
 display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    justify-content: space-between;
    margin-bottom: 2rem;
    grid-gap: 30px;
}
.second-para
{
    font-size:13px;
    color: #cbd5e1;
    
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a{
    text-decoration: none;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .logo-img{
        width: auto;
    }
    
    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 20px 10px;
    }

    .hero-top {
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .testimonals-header{
        padding: 10px;
    }

    .hero-heading{
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-top {
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading.hidden {
    display: none;
}

/***** Notice Board Styles *****/
.notice-board {
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(30,41,59,0.10);
    padding: 30px;
    max-width: 400px;
    margin-left: 12rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 4;
    min-width: 300px;
}

.notice-badge {
    background: #28C76F;
    color: #fff;
    font-weight: 600;
    border-radius: 8px 8px 8px 0;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(34,197,94,0.10);
}

.notice-badge i {
    font-size: 1.1rem;
}

.notice-title {
    color: #333333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.notice-desc {
    color: #334155;
    font-size: 1.1rem;
    margin-bottom: 1.7rem;
    line-height: 1.6;
    text-align: left;
}

.notice-btn {
    background: #ffd600;
    color: #1e293b;
    font-weight: 700;
    border: none;
    border-radius: 0px 10px 0px 10px;
    padding: 10px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(255,214,0,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
}

.notice-btn:hover {
    background: #ffe066;
    color: #1e293b;
    transform: translateY(-2px) scale(1.03);
}

/* Responsive: Stack notice board below hero-content on mobile */
@media (max-width: 1024px) {
    .notice-board {
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .notice-board {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        border-radius: 12px;
    }
    .notice-title {
        font-size: 1.2rem;
    }
    .notice-desc {
        font-size: 0.98rem;
    }
    .notice-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Video Gallery Section Styles */
.main-video-gallery{
    background-color: #f8fafc;
}

.video-gallery{
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    padding-top: 30px;
    background-color: #f8fafc;
}

@media (max-width: 768px) {
    .video-gallery {
        width: auto;
    }
}

/* Static Strip Footer - Mobile Only */
.static-strip {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 1);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 14px;
}

.static-strip span {
    /*flex: 1;*/
    margin-right: 15px;
}

.static-strip a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.static-strip a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

@media (min-width: 769px) {
    .static-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

@media (max-width: 768px) {
    .static-strip {
        display: flex;
    }
    
    body {
        /*padding-bottom: 60px;*/
    }
}