* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif !important;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.navbar-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-brand a:hover {
    color: #0056b3;
}

.navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #007bff;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Navbar Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: #fff;
    color: #667eea;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #007bff;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background-color: #007bff;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.service-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007bff;
    text-align: center;
}

.service-card p {
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
}

.service-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #0056b3;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .navbar-link {
        padding: 1rem;
        justify-content: space-between;
    }

    .navbar-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0;
        border-radius: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .features {
        padding: 4rem 0;
    }

    .features h2 {
        font-size: 2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}


/* =================index.html ============*/

/* <header class="topbar-header-001"> */

    /* Top Header Bar */
    .topbar-header-001 {
        width: 100%;
        height: 8vh;
        min-height: 50px;
        background: linear-gradient(90deg, #003d5c 0%, #00517a 100%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        position: relative;
        z-index: 999;
    }

    /* Left Section - Contact Info */
    .contact-info-wrapper-001 {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .info-item-001 {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #ffffff;
        font-size: 0.8rem;
        font-family: 'Arial', sans-serif;
    }

    .info-item-001 svg {
        width: 10px;
        height: 10px;
        fill: #ffffff;
        flex-shrink: 0;
        align-self: center;
    }

    .info-item-001 a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .info-item-001 a:hover {
        color: #fb2424;
    }

    .divider-line-001 {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.3);
    }

    /* Right Section - Social & Quote Button */
    .right-section-wrapper-001 {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Social Icons */
    .social-links-001 {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .social-btn-001 {
        width: 24px;
        height: 24px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #003d5c;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-btn-001 svg {
        width: 11px;
        height: 11px;
        fill: #003d5c;
    }

    .social-btn-001:hover {
        background: #ff0606;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(251, 191, 36, 0.4);
    }

    .social-btn-001:hover svg {
        fill: #003d5c;
    }

    /* Get a Quote Button */
    .quote-btn-wrapper-001 {
        position: relative;
    }

    .quote-action-btn-001 {
        background: linear-gradient(135deg, #fb2424 0%, #f50b0b 100%);
        color: #003d5c;
        padding: 8px 25px;
        font-size: 0.8rem;
        font-weight: 700;
        border: none;
        cursor: pointer;
        position: relative;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Arial', sans-serif;
    }

    .quote-action-btn-001:hover {
        background: linear-gradient(135deg, #f50f0b 0%, #d97706 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .topbar-header-001 {
            padding: 0 3%;
        }

        .contact-info-wrapper-001 {
            gap: 15px;
        }

        .info-item-001 {
            font-size: 0.75rem;
        }

        .quote-action-btn-001 {
            padding: 7px 20px;
            font-size: 0.75rem;
        }
    }

    @media (max-width: 768px) {
        .topbar-header-001 {
            height: auto;
            min-height: 50px;
            padding: 10px 4%;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .contact-info-wrapper-001 {
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .info-item-001 {
            font-size: 0.7rem;
        }

        .info-item-001 svg {
            width: 9px;
            height: 9px;
        }

        .divider-line-001 {
            display: none;
        }

        .right-section-wrapper-001 {
            gap: 12px;
        }

        .social-links-001 {
            gap: 5px;
        }

        .social-btn-001 {
            width: 22px;
            height: 22px;
        }

        .social-btn-001 svg {
            width: 10px;
            height: 10px;
        }

        .quote-action-btn-001 {
            padding: 7px 18px;
            font-size: 0.7rem;
        }
    }

    @media (max-width: 480px) {
        .topbar-header-001 {
            padding: 8px 3%;
            gap: 8px;
        }

        .info-item-001 {
            font-size: 0.65rem;
            gap: 5px;
        }

        .info-item-001 svg {
            width: 8px;
            height: 8px;
        }

        .right-section-wrapper-001 {
            flex-direction: column;
            gap: 8px;
            width: 100%;
            align-items: center;
        }

        .social-links-001 {
            gap: 5px;
        }

        .social-btn-001 {
            width: 20px;
            height: 20px;
        }

        .social-btn-001 svg {
            width: 9px;
            height: 9px;
        }

        .quote-action-btn-001 {
            padding: 6px 16px;
            font-size: 0.65rem;
        }
    }
/* end */


/* <section class="fire-safety-hero"> */

.fire-safety-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: linear-gradient(135deg, #e8f0f7 0%, #d4e4f0 50%, #c5d9e8 100%);
  overflow: hidden;
  font-family: Georgia, 'Times New Roman', serif;
}

.hero-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  max-width: 600px;
}

.content-left {
  position: relative;
  padding-left: 25px;
}

.content-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #dc3545 0%, #c82333 100%);
  animation: slideInLeft 0.8s ease-out;
  transition: width 0.3s ease;
}

.content-left:hover::before {
  width: 6px;
}

@keyframes slideInLeft {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* Bubble Animation */
@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-80px) scale(1);
    opacity: 0;
  }
}

.bubble {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(220, 53, 69, 0.6), rgba(220, 53, 69, 0.2));
  border-radius: 50%;
  pointer-events: none;
  animation: bubbleUp 1.5s ease-out forwards;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
}

.expert-label {
  font-size: 1rem;
  color: #1a3a52;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
}

.expert-label:hover {
  color: #dc3545;
  transform: translateX(5px) scaleX(1.1);
  letter-spacing: 2px;
}

.hero-title {
  font-size: 2.8rem;
  color: #0d2f47;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.hero-title:hover {
  transform: translateX(8px) scaleX(1.08);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-text {
  color: #dc3545;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #dc3545;
  transition: width 0.4s ease;
}

.hero-title:hover .highlight-text {
  color: #ff4555;
  transform: scaleX(1.12) scaleY(1.05);
}

.hero-title:hover .highlight-text::after {
  width: 100%;
}

.hero-subtitle {
  font-size: 1rem;
  color: #4a5f73;
  margin-bottom: 32px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
}

.hero-subtitle:hover {
  color: #dc3545;
  transform: translateX(5px) scaleX(1.1);
  letter-spacing: 1.5px;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 0.85rem;
  font-family: Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0d2f47;
  color: #0d2f47;
}

.btn-outline:hover {
  background: #0d2f47;
  color: white;
  transform: translateY(-3px) scaleX(1.05);
  box-shadow: 0 6px 20px rgba(13, 47, 71, 0.3);
  letter-spacing: 1.5px;
}

.btn-primary {
  background: #0d2f47;
  color: white;
}

.btn-primary:hover {
  background: #1a4d6f;
  transform: translateY(-3px) scaleX(1.05);
  box-shadow: 0 6px 20px rgba(13, 47, 71, 0.4);
  letter-spacing: 1.5px;
}

.hero-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0;
  visibility: hidden; /* Add this */
  pointer-events: none; /* Add this */
  z-index: 1; /* Add this */
  transition: opacity 1s ease-in-out, transform 0.3s ease, visibility 1s;
}

.hero-image.active {
    opacity: 1;
  visibility: visible; /* Add this */
  pointer-events: auto; /* Add this */
  z-index: 2; /* Add this */
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

.dot.active {
  background: white;
  width: 12px;
  height: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fire-safety-hero {
    height: 80vh;
    min-height: 600px;
  }

  .hero-container {
    flex-direction: column;
    padding: 8% 6%;
  }

  .hero-content {
    flex: 1;
    max-width: 100%;
    display: flex;
    align-items: center;
  }

  .content-left {
    padding-left: 18px;
    top: -166px;
  }

  .content-left::before {
    width: 3px;
  }

  .content-left:hover::before {
    width: 4px;
  }

  .expert-label {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.75rem;
  }

  .hero-image-wrapper {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    top: auto;
  }

  .hero-image {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.3;
  }

  .hero-image.active {
    opacity: 0.3;
  }

  .carousel-dots {
    bottom: 20px;
  }
  
  .expert-label:hover {
    transform: translateX(3px) scaleX(1.05);
  }
  
  .hero-title:hover {
    transform: translateX(5px) scaleX(1.04);
  }
  
  .hero-subtitle:hover {
    transform: translateX(3px) scaleX(1.05);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}
/* end */

/* <section class="process-steps-section"> */

  .process-steps-section {
    width: 100%;
    background: #fff;
    padding: 80px 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
  }

  .section-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(20px);
  }

  .section-heading.animate-in {
    animation: fadeInUp 0.8s ease forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Red underline with animation */
  .heading-underline {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    margin: 0 auto 20px auto;
    border-radius: 3px;
    transition: width 0.8s ease 0.4s;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  }

  .heading-underline.show {
    width: 150px;
  }

  .section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
  }

  /* Container - No horizontal overflow */
  .steps-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 0 10px;
    flex-wrap: wrap;
  }

  .step-item {
    flex: 0 0 220px;
    min-width: 220px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(100px) rotate(-90deg);
    transform-origin: center bottom;
  }

  .step-item.animate-in {
    animation: cardRotateUp 1.5s ease-out forwards;
  }

  @keyframes cardRotateUp {
    0% {
      opacity: 0;
      transform: translateY(120px) rotate(-90deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }
  }

  .step-item:nth-child(1).animate-in { animation-delay: 0.2s; }
  .step-item:nth-child(2).animate-in { animation-delay: 0.35s; }
  .step-item:nth-child(3).animate-in { animation-delay: 0.5s; }
  .step-item:nth-child(4).animate-in { animation-delay: 0.65s; }
  .step-item:nth-child(5).animate-in { animation-delay: 0.8s; }

  /* Badge with teardrop shape */
  .step-badge {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }

  /* Outer colored ring with teardrop tail */
  .badge-outer {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50% 50% 0 50%;
    transform: rotate(-45deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
  }

  .badge-outer.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  }

  .badge-outer.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  }

  .badge-outer.magenta {
    background: linear-gradient(135deg, #be185d 0%, #9f1239 100%);
  }

  .badge-outer.cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  }

  .badge-outer.green {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  }

  /* White inner circle */
  .badge-inner {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
  }

  .step-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
  }

  .step-number.orange { color: #f59e0b; }
  .step-number.red { color: #ef4444; }
  .step-number.magenta { color: #be185d; }
  .step-number.cyan { color: #06b6d4; }
  .step-number.green { color: #84cc16; }

  .step-label {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .step-label.orange { color: #f59e0b; }
  .step-label.red { color: #ef4444; }
  .step-label.magenta { color: #be185d; }
  .step-label.cyan { color: #06b6d4; }
  .step-label.green { color: #84cc16; }

  /* Content below badge */
  .step-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1f2937;
    margin-bottom: 12px;
    min-height: 50px;
  }

  /* Desktop: all items in one line */
  @media (min-width: 1200px) {
    .steps-container {
      justify-content: space-between;
      flex-wrap: nowrap;
    }
    .step-item {
      flex: 1 1 18%;
    }
  }

  /* Tablet */
  @media (max-width: 900px) {
    .process-steps-section {
      padding: 60px 4%;
    }

    .section-heading {
      font-size: 2.2rem;
    }
    .section-subtitle {
      font-size: 1.05rem;
    }

    .steps-container {
      gap: 30px;
    }
  }

  /* Mobile */
  @media (max-width: 600px) {
    .process-steps-section {
      padding: 50px 3%;
    }
    .section-header {
      padding: 0 10px;
      margin-bottom: 50px;
    }
    .section-heading {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }
    .heading-underline.show {
      width: 100px;
      height: 4px;
    }
    .section-subtitle {
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .steps-container {
      gap: 25px;
    }
    .step-item {
      flex: 0 0 200px;
      min-width: 200px;
      max-width: 200px;
    }
    .step-badge {
      width: 120px;
      height: 120px;
      margin-bottom: 18px;
    }
    .badge-outer {
      width: 120px;
      height: 120px;
    }
    .badge-inner {
      width: 95px;
      height: 95px;
    }
    .step-number {
      font-size: 2.4rem;
    }
    .step-label {
      font-size: 1.4rem;
    }
    .step-title {
      font-size: 1.05rem;
      margin-bottom: 10px;
      min-height: auto;
    }
  }
/* end */


/* <section class="about-section"> */
    .about-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 100px 0;
        overflow: hidden;
        font-family: Georgia, 'Times New Roman', serif;
    }

    /* Security Background Shapes */
    .security-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .security-shape {
        position: absolute;
        opacity: 0.04;
        transition: all 0.3s ease;
    }

    .shape-shield-1 {
        top: 10%;
        left: 5%;
        width: 180px;
        height: 180px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc2626"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/></svg>') no-repeat center;
        background-size: contain;
        animation: float-shape 15s ease-in-out infinite;
    }

    .shape-lock-1 {
        top: 60%;
        left: 8%;
        width: 120px;
        height: 120px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc2626"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>') no-repeat center;
        background-size: contain;
        animation: float-shape 18s ease-in-out infinite reverse;
    }

    .shape-shield-2 {
        top: 25%;
        right: 10%;
        width: 200px;
        height: 200px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc2626"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1.41 16.59L6.41 13.41 7.83 12l2.76 2.76 5.59-5.59 1.41 1.41z"/></svg>') no-repeat center;
        background-size: contain;
        animation: float-shape 20s ease-in-out infinite;
    }

    .shape-lock-2 {
        bottom: 15%;
        right: 5%;
        width: 150px;
        height: 150px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc2626"><path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z"/></svg>') no-repeat center;
        background-size: contain;
        animation: float-shape 22s ease-in-out infinite reverse;
    }

    .shape-camera {
        top: 45%;
        left: 15%;
        width: 100px;
        height: 100px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc2626"><path d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z"/></svg>') no-repeat center;
        background-size: contain;
        animation: float-shape 16s ease-in-out infinite;
    }

    @keyframes float-shape {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-30px) rotate(10deg);
        }
    }

    /* Container */
    .about-container {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 6%;
        display: grid;
        grid-template-columns: 48% 52%;
        gap: 60px;
        align-items: center;
    }

    /* Left Image Section - Single Image with Slider */
    .image-showcase {
        position: relative;
        width: 100%;
        height: 600px;
    }

    /* Image Container with Custom Border Radius */
    .image-slider {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 0 100px 0 100px; /* Right-top rounded, Left-bottom rounded, Right-bottom sharp, Left-top sharp */
        overflow: hidden;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.15),
            0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .slider-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slider-image.active {
        opacity: 1;
    }

    /* Decorative Badge */
    .image-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
        color: white;
        z-index: 10;
        animation: rotate-badge 20s linear infinite;
    }

    @keyframes rotate-badge {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .badge-number {
        font-size: 32px;
        font-weight: 900;
        line-height: 1;
        animation: rotate-badge-reverse 20s linear infinite;
    }

    @keyframes rotate-badge-reverse {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(-360deg); }
    }

    .badge-text {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        animation: rotate-badge-reverse 20s linear infinite;
    }

    /* Right Content Section */
    .content-section {
        opacity: 0;
        transform: translateY(30px);
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 25px;
        background: rgba(255, 255, 255, 0.1);
        border-left: 4px solid #dc2626;
        border-radius: 8px;
        margin-bottom: 25px;
    }

    .label-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc2626"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/></svg>') no-repeat center;
        background-size: contain;
    }

    .label-title {
        font-size: 14px;
        font-weight: 700;
        color: #dc2626;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .content-heading {
        font-size: clamp(2.2rem, 3vw, 3.5rem);
        font-weight: 700;
        line-height: 1.7;
        color: #0f172a;
        margin-bottom: 25px;
        letter-spacing: -1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-heading .highlight {
        color: #dc2626;
        position: relative;
        display: inline-block;
        word-wrap: break-word;
        font-weight: 700;
    }

    .content-heading .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 10px;
        background: rgba(220, 38, 38, 0.2);
        z-index: -1;
        transform: skewX(-10deg);
    }

    .content-text {
        font-size: 16px;
        line-height: 1.9;
        color: #475569;
        text-align: justify;
        margin-bottom: 20px;
        hyphens: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        font-weight: 400;
    }

    .content-text strong {
        color: #1e293b;
        font-weight: 700;
        word-wrap: break-word;
    }

    .read-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 40px;
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        margin-top: 15px;
    }

    .read-more-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .read-more-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .read-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
    }

    .btn-icon {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .read-more-btn:hover .btn-icon {
        transform: translateX(5px);
    }

    /* Founder Info Cards */
.founder-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 cards horizontal */
    gap: 20px;
    margin-top: 30px;
}

.founder-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #dc2626;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.founder-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.founder-role {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
    word-wrap: break-word;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .founder-cards {
        grid-template-columns: 1fr; /* Mobile: 1 card stacked */
        gap: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .founder-cards {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cards */
        gap: 18px;
    }
}

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .about-container {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .image-showcase {
            height: 550px;
            max-width: 650px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 60px 0;
        }

        .about-container {
            gap: 50px;
            padding: 0 5%;
        }

        .image-showcase {
            height: 450px;
        }

        .image-slider {
            border-radius: 0 80px 0 80px;
        }

        .image-badge {
            width: 90px;
            height: 90px;
            top: -15px;
            right: -15px;
        }

        .badge-number {
            font-size: 24px;
        }

        .badge-text {
            font-size: 10px;
        }

        .content-heading {
            font-size: clamp(1.8rem, 6vw, 2.5rem);
        }

        .content-text {
            font-size: 15px;
        }

        .founder-cards {
            flex-direction: column;
        }

        .founder-card {
            min-width: 100%;
        }

        .security-shape {
            opacity: 0.02;
        }
    }

    @media (max-width: 480px) {
        .about-container {
            padding: 0 4%;
        }

        .image-showcase {
            height: 380px;
        }

        .image-slider {
            border-radius: 0 60px 0 60px;
        }

        .image-badge {
            width: 70px;
            height: 70px;
            top: -10px;
            right: -10px;
        }

        .badge-number {
            font-size: 20px;
        }

        .badge-text {
            font-size: 8px;
        }

        .content-label {
            padding: 8px 20px;
        }

        .label-title {
            font-size: 12px;
            letter-spacing: 1px;
        }

        .content-heading {
            font-size: clamp(1.6rem, 7vw, 2rem);
        }

        .content-text {
            font-size: 14px;
            line-height: 1.8;
        }

        .read-more-btn {
            width: 100%;
            justify-content: center;
            padding: 14px 30px;
            font-size: 14px;
        }

        .founder-name {
            font-size: 15px;
        }

        .founder-role {
            font-size: 12px;
        }
    }

    /* end */

/* <section class="about-section"> */
.services-section {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.services-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #1e3a5f;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.services-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.service-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.service-card {
  background: #1e3a5f;
  border: 3px solid #ffffff;
  border-radius: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(120px) rotate(90deg);
  transform-origin: center bottom;
}

.service-card.animate-in {
  animation: cardRotateUp 1.2s ease-out forwards;
  animation-fill-mode: both;
}

@keyframes cardRotateUp {
  0% {
    opacity: 0;
    transform: translateY(120px) rotate(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.service-card-link:nth-child(1) .service-card.animate-in {
  animation-delay: 0.2s;
}

.service-card-link:nth-child(2) .service-card.animate-in {
  animation-delay: 0.4s;
}

.service-card-link:nth-child(3) .service-card.animate-in {
  animation-delay: 0.6s;
}

.service-card-link:nth-child(4) .service-card.animate-in {
  animation-delay: 0.8s;
}

.service-card-link:nth-child(5) .service-card.animate-in {
  animation-delay: 1.0s;
}

.service-card-link:nth-child(6) .service-card.animate-in {
  animation-delay: 1.2s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.3);
  border-color: #d4a024;
}

.card-image-wrapper {
  width: 100%;
  padding: 20px 20px 0 20px;
}

.card-image {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  padding: 25px 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e7ef;
  font-weight: 400;
  margin-bottom: 20px;
  flex: 1;
}

/* ✅ READ MORE BUTTON STYLES */
.card-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Centers content horizontally */
  gap: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: all 0.3s ease;
  text-align: center; /* Centers text */
}

.read-more-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}


.service-card:hover .card-read-more {
  gap: 12px;
  color: #ffffff;
}

.service-card:hover .read-more-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-section {
    padding: 60px 4%;
  }

  .services-heading {
    font-size: 2.5rem;
    margin-bottom: 60px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 600px;
  }

  .card-image {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 50px 4%;
  }

  .services-heading {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  .services-container {
    gap: 40px;
  }

  .card-image {
    height: 230px;
  }

  .card-title {
    font-size: 1.35rem;
  }

  .card-description {
    font-size: 0.92rem;
    margin-bottom: 18px;
  }

  .card-read-more {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 3%;
  }

  .services-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .services-container {
    gap: 35px;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 22px 18px 28px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.88rem;
    margin-bottom: 15px;
  }

  .card-read-more {
    font-size: 0.85rem;
  }

  .read-more-arrow {
    font-size: 1.1rem;
  }
}

/* end */


/* <section class="seo-talk-wrap v3" >*/

/* Section context */
.seo-talk-wrap.v3{
  position:relative;

  padding:26px 0;
  display:flex; justify-content:center;
}

/* Card: 80% width, 30vh height */
.talk-card.v3{
  position:relative;
  width:min(90%,1280px);
  height:max(30vh,320px);
  background:#0C3F7D;
  margin-top: -65px;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
  padding: clamp(16px,2.2vw,24px) clamp(18px,2.6vw,28px);
  overflow:hidden; /* keep arc graphics inside; image is outside card */
  display:grid; grid-template-columns: 1.1fr auto 1fr; align-items:center; gap: clamp(12px,2vw,20px);
  z-index:1; /* below the overlay image */
}

/* Text + button */
.talk-left h3{ margin:0 0 8px; color:#ffffff; font-weight:800; line-height:1.15; font-size:clamp(18px,3vw,32px); }
.talk-left p{ margin:0; color:#ffffff; opacity:.85; font-size:clamp(12px,2.1vw,16px); }
.talk-btn{
  justify-self:center; text-decoration:none; color:#ffffff; font-weight:800; letter-spacing:.02em;
  border:2px solid #ffffff; border-radius:999px; padding:14px 28px; transition:.2s ease;
}
.talk-btn:hover{ background:#0f1115; color:#a7ef1e }

/* Curved lines inside the card */
.arc-lines{
  position:absolute; inset:-10% -20% -20% -20%; z-index:0; opacity:.55; pointer-events:none;
  background:
    radial-gradient(120% 60% at 75% 20%, rgba(15,17,21,.18) 0 60%, rgba(15,17,21,0) 61%) no-repeat,
    conic-gradient(from 180deg at 75% 50%, rgba(15,17,21,.14) 0 30deg, rgba(15,17,21,0) 30deg 360deg) no-repeat,
    conic-gradient(from 180deg at 75% 50%, rgba(15,17,21,.12) 0 18deg, rgba(15,17,21,0) 18deg 360deg) no-repeat;
  background-size: 140% 140%, 160% 160%, 200% 200%;
  background-position: 60% 40%, 60% 60%, 60% 60%;
}

/* OVERLAY IMAGE: positioned relative to the section, above the card */
.talk-overlay-img{
  position:absolute;
  right: max(10%, calc((100% - min(80%,1280px))/2 - 6%)); /* aligns to card’s right edge + overflow */
  top: calc(21.5% - max(30vh,240px)/2 - 14%); /* lifts head above card top */
  width:min(25%);
  z-index: 3; /* above the card */
  pointer-events:none;
}
.talk-overlay-img img{ width:100%; height:auto; display:block; }

/* Responsive */
@media (max-width: 980px){
  .talk-card.v3{ grid-template-columns: 1fr; height:max(34vh,260px); }
  .talk-btn{ justify-self:start; }
  .talk-overlay-img{
    right: max(4%, calc((100% - min(80%,1280px))/2 - 8%));
    top: calc(50% - max(34vh,260px)/2 - 18%);
    width:min(52%,520px);
  }
}
@media (max-width: 560px){
  .talk-card.v3{ height:max(38vh,280px); }
  .talk-overlay-img{
right: max(0%, calc((100% - min(76%, 1280px)) / 2 - 10%));
        top: calc(77% - max(-14vh, 82px) / 2 - 20%);
        width: 40%;
    
  }
}
/* end */

/* <section class="facts-tech" > */

.facts-tech {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 60px 10px;
  font-family: "Poppins", sans-serif;
  height: 60vh;
}

/* Background subtle grid + parallax dots */
.facts-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.06), transparent 70%), 
              repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255, 0, 0, 0.05) 25px),
              repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(255, 0, 0, 0.05) 25px);
  animation: bgParallax 8s infinite linear alternate;
  z-index: 0;
}
@keyframes bgParallax {
  0% { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

/* Heading */
.facts-heading {
  text-align: center;
  font-weight: 700;
  color: #111;
  font-size: 1.8rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  position: relative;
}
.head-icon {
  width: 30px;
  height: 30px;
}

/* Grid */
.facts-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}

/* Fact Pod */
.fact-pod {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.1);
  border-radius: 18px;
  width: 170px;
  height: 140px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform-style: preserve-3d;
}
.fact-pod:hover {
  transform: translateY(-10px) rotateX(6deg);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.25);
}

/* Icon with pulse */
.icon-wrap {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}
.icon-wrap img {
  width: 45px;
  height: 45px;
  z-index: 2;
  position: relative;
}
.pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(230, 0, 0, 0.4);
  animation: pulseAnim 2s infinite;
  z-index: 1;
}
@keyframes pulseAnim {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Text */
.fact-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
}
.fact-label {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .facts-tech { height: auto; padding: 40px 10px; }
  .facts-grid { gap: 25px; }
  .fact-pod { width: 45%; height: 130px; }
}
@media (max-width: 480px) {
  /* .fact-pod { width: 80%; height: auto; padding: 15px; } */
  .fact-number { font-size: 1.5rem; }
}
/* end */


/* <section class="security-services-section" > */


  /* Parallax Background Section */
  .security-services-section {
    background: url("../images/new_img/bpuncer-img.jpeg") center/cover fixed no-repeat;
    padding: 80px 5%;
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 40, 0.75);
    backdrop-filter: blur(3px);
  }

  .section-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }

  /* Main Heading */
  .section-main-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    /* margin-bottom: 60px; */
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  /* Cards Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 40px;
  }

  /* Card Container */
  .flip-card {
    perspective: 1500px;
    height: 240px;
    opacity: 0;
    transform: translateY(100px) rotate(-90deg);
    transform-origin: center bottom;
  }

  .flip-card.animate-in {
    animation: cardRotateUp 1.5s ease-out forwards;
  }

  @keyframes cardRotateUp {
    0% {
      opacity: 0;
      transform: translateY(120px) rotate(-90deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }
  }

  .flip-card:nth-child(1).animate-in { animation-delay: 0.2s; }
  .flip-card:nth-child(2).animate-in { animation-delay: 0.35s; }
  .flip-card:nth-child(3).animate-in { animation-delay: 0.5s; }
  .flip-card:nth-child(4).animate-in { animation-delay: 0.65s; }
  .flip-card:nth-child(5).animate-in { animation-delay: 0.8s; }
  .flip-card:nth-child(6).animate-in { animation-delay: 0.95s; }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  /* Front and Back Sides */
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
  }

  /* Front Side */
  .flip-card-front {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #ffffff;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(30, 58, 95, 0.3));
    transition: transform 0.3s ease;
  }

  .flip-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
  }

  .card-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.3;
  }

  /* Back Side */
  .flip-card-back {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    border: 3px solid #d4a024;
    transform: rotateY(180deg);
  }

  .card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .security-services-section {
      padding: 70px 4%;
    }

    .section-main-heading {
      font-size: 2.5rem;
      margin-bottom: 50px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 22px 35px;
    }
  }

  @media (max-width: 768px) {
    .security-services-section {
      padding: 60px 4%;
    }

    .section-main-heading {
      font-size: 2rem;
      margin-bottom: 45px;
    }

    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .flip-card {
      height: 220px;
    }

    .card-icon {
      width: 55px;
      height: 55px;
    }

    .card-heading {
      font-size: 1.2rem;
    }

    .card-description {
      font-size: 0.92rem;
    }
  }

  @media (max-width: 480px) {
    .security-services-section {
      padding: 50px 3%;
    }

    .section-main-heading {
      font-size: 1.7rem;
      margin-bottom: 40px;
    }

    .flip-card {
      height: 200px;
    }

    .card-icon {
      width: 50px;
      height: 50px;
    }

    .card-heading {
      font-size: 1.1rem;
    }

    .card-description {
      font-size: 0.88rem;
    }
  }
/* end */

/* <section class="clients-section"> */

  .clients-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, #f1f5f9 100%);
    opacity: 0.5;
  }

  .clients-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .clients-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .clients-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  }

  .clients-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
  }

  .clients-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
  }

  /* Carousel */
  .clients-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .clients-carousel-wrapper::before,
  .clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
  }

  .clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
  }

  .clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
  }

  .clients-carousel {
    display: flex;
    gap: 40px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
  }

  @keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .clients-carousel:hover {
    animation-play-state: paused;
  }

  /* Logo box */
  .client-logo-box {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .client-logo-box:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #2563eb; /* Blue border */
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
  }

  .client-logo-img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: none; /* No grayscale */
    opacity: 1;
  }

  .client-logo-box:hover .client-logo-img {
    transform: scale(1.1);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .clients-heading { font-size: 2.5rem; }
    .client-logo-box { width: 200px; height: 130px; }
  }

  @media (max-width: 768px) {
    .clients-heading { font-size: 2rem; }
    .client-logo-box { width: 180px; height: 120px; padding: 25px; }
  }

  @media (max-width: 480px) {
    .clients-heading { font-size: 1.7rem; }
    .client-logo-box { width: 160px; height: 110px; padding: 20px; }
  }

/* end */

/* Footer */
.gss-footer {
  position: relative;
  background: #0d1b2a;
  color: #e0e1dd;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: 80px;
}

/* Wave Design */
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
}

/* Main Footer */
.footer-main {
  padding: 80px 0 60px;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.logo-shield {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.logo-shield svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

/* Column Headings */
.footer-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #dc3545 0%, #ff4555 100%);
  border-radius: 2px;
}

/* About Description */
.footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #b1b3b6;
  margin-bottom: 30px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e1dd;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  background: linear-gradient(135deg, #dc3545 0%, #ff4555 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #b1b3b6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #dc3545;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Contact Section */
.contact-column {
  grid-column: span 1;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
  font-size: 0.9rem;
  color: #b1b3b6;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 5px;
}

.contact-details a:hover {
  color: #dc3545;
}

/* Bottom Copyright */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #b1b3b6;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: #b1b3b6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #dc3545;
}

.divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .contact-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    justify-content: center;
  }
  
  .footer-heading {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-description {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
}
/* end */


/* =============== about.html===================== */

/*       <section class="_02"> */
        ._02 {
          width: 100%;
          height: 70vh;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          background: url("../images/about-banner1.png") no-repeat center
            center;
          background-size: cover;
        }

        ._02-container {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          padding: 0 5%;
          box-sizing: border-box;
        }

        ._02-text {
          font-size: 3.5rem;
          font-weight: 700;
          color: #ffffff;
          text-align: center;
          line-height: 1.1;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
          ._02-text {
            font-size: 3rem;
          }
        }

        @media (max-width: 480px) {
          ._02-text {
            font-size: 2.2rem;
          }

          ._02 {
            padding: 0 2%;
          }
        }
    /* end */


/* <section class="about_021"> */
.about_021 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  overflow: hidden;
}

/* --- Layout --- */
.about_021_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about_021_left {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

/* --- Animated Icons --- */
.about_021_icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about_021_icons i {
  position: absolute;
  color: rgba(0, 87, 184, 0.1);
}

.icon-1 { top: 10%; left: 10%; font-size: 40px; transform: rotate(-15deg); animation: float-rotate-1 4s ease-in-out infinite; }
.icon-2 { top: 20%; right: 15%; font-size: 35px; transform: rotate(25deg); animation: float-rotate-2 5s ease-in-out infinite; }
.icon-3 { bottom: 20%; left: 5%; font-size: 45px; transform: rotate(10deg); animation: float-rotate-3 6s ease-in-out infinite; }
.icon-4 { bottom: 15%; right: 10%; font-size: 38px; transform: rotate(-20deg); animation: float-rotate-4 5.5s ease-in-out infinite; }
.icon-5 { top: 50%; left: 0%; font-size: 42px; transform: rotate(30deg); animation: float-rotate-5 4.5s ease-in-out infinite; }
.icon-6 { top: 50%; right: 0%; font-size: 40px; transform: rotate(-25deg); animation: float-rotate-6 5.2s ease-in-out infinite; }

/* --- Main Circle --- */
.about_021_outer {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057b8 0%, #003d82 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 87, 184, 0.3);
  position: relative;
  z-index: 1;
  border: 8px solid #fff;
}

/* --- Small Top-Left Circle --- */
.about_021_small {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.about_021_small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Inner Circle --- */
.about_021_inner {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.about_021_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Years Badge --- */
.about_021_badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000 0%, #ff0707 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  border: 5px solid #fff;
  z-index: 2;
}

.about_021_badge span:first-child { font-size: 28px; line-height: 1; }
.about_021_badge span:last-child { font-size: 12px; margin-top: 5px; }

/* --- Right Side --- */
.about_021_right {
  flex: 1;
  min-width: 300px;
}

.about_021_right h2 {
  font-size: 42px;
  color: #fb0404;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.about_021_right .subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
  background: linear-gradient(90deg, rgba(0, 87, 184, 0.1) 0%, transparent 100%);
  padding: 10px 15px;
  border-left: 4px solid #0057b8;
}

.about_021_divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0057b8 0%, #ff6b35 100%);
  margin: 25px 0;
}

.about_021_right h4 {
  font-size: 24px;
  color: #ff4400;
  margin-bottom: 15px;
  font-weight: 600;
}

.about_021_right p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* --- Floating Animations --- */
@keyframes float-rotate-1 {
  0% { transform: translateY(0px) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
  100% { transform: translateY(0px) rotate(-15deg); }
}
@keyframes float-rotate-2 {
  0% { transform: translateY(0px) rotate(25deg); }
  50% { transform: translateY(-25px) rotate(55deg); }
  100% { transform: translateY(0px) rotate(25deg); }
}
@keyframes float-rotate-3 {
  0% { transform: translateY(0px) rotate(10deg); }
  50% { transform: translateY(-15px) rotate(40deg); }
  100% { transform: translateY(0px) rotate(10deg); }
}
@keyframes float-rotate-4 {
  0% { transform: translateX(0px) rotate(-20deg); }
  50% { transform: translateX(-15px) rotate(-50deg); }
  100% { transform: translateX(0px) rotate(-20deg); }
}
@keyframes float-rotate-5 {
  0% { transform: translateY(0px) rotate(30deg); }
  50% { transform: translateY(-30px) rotate(60deg); }
  100% { transform: translateY(0px) rotate(30deg); }
}
@keyframes float-rotate-6 {
  0% { transform: translateX(0px) translateY(0px) rotate(-25deg); }
  50% { transform: translateX(15px) translateY(-20px) rotate(5deg); }
  100% { transform: translateX(0px) translateY(0px) rotate(-25deg); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about_021_container { flex-direction: column; gap: 40px; }
  .about_021_outer { width: 320px; height: 320px; }
  .about_021_inner { width: 260px; height: 260px; }
  .about_021_small { width: 80px; height: 80px; top: -20px; left: -20px; }
  .about_021_badge { width: 80px; height: 80px; }
  .about_021_right h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .about_021 { padding: 60px 15px; }
  .about_021_outer { width: 280px; height: 280px; }
  .about_021_inner { width: 230px; height: 230px; }
  .about_021_right h2 { font-size: 28px; }
  .about_021_right p { font-size: 15px; }
}


/* end */

/*========================== Best -Guarding-Security-Services.html================  */

/* <section class="security-hero-diagonal_003"> */
/* ===================================
   MOBILE-FIRST RESPONSIVE DESIGN
   Base styles for 320px and up
   =================================== */

.security-hero-diagonal_003 {
    padding: 0;
    background: #ffffff; /* ✅ White background */
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Main Container */
.hero-container_003 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

/* Left Content - Mobile First */
.hero-left-content_003 {
    width: 100%;
    max-width: 100%;
    color: #000000;
    text-align: justify; /* ✅ Justified on mobile */
    order: 2;
}

/* ISO Badge */
.iso-badge_003 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 0, 0);
    backdrop-filter: blur(10px);
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 24px);
    border-radius: 30px;
    margin-bottom: clamp(20px, 4vw, 30px);
    border: 1px solid rgb(2, 3, 28);
}

.badge-icon_003 {
    font-size: clamp(16px, 3vw, 20px);
}

.badge-text_003 {
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
}

/* Hero Heading - Fluid Typography */
.hero-heading_003 {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(20px, 4vw, 25px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.highlight-text_003 {
    color: #e53935;
    text-shadow: 0 0 30px rgba(229, 57, 53, 0.5);
}

/* Hero Description - Justified on Mobile */
.hero-description_003 {
    font-size: clamp(15px, 2.5vw, 17px);
    line-height: 1.7;
    margin-bottom: clamp(18px, 3vw, 25px);
    opacity: 0.95;
    max-width: 100%;
    text-align: justify; /* ✅ Justified text on mobile */
    text-justify: inter-word; /* Better spacing between words */
}

/* CTA Buttons - Touch Friendly */
.cta-buttons_003 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: clamp(10px, 2vw, 15px);
}

.btn-secondary_003 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(14px, 3vw, 17px) clamp(28px, 6vw, 38px);
    background: rgba(160, 94, 94, 0.15);
    backdrop-filter: blur(10px);
    color: #ff0000;
    text-decoration: none;
    border-radius: 8px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-height: 48px;
    width: 100%;
}

.btn-secondary_003:hover {
    background: rgb(255, 10, 10);
    border-color: #fff;
    color: white;
    transform: translateY(-2px);
}

/* Right Side Image - Mobile First */
.hero-right-image_003 {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    margin: 0 auto;
}

/* Red Animated Background */
.shape-background_003 {
    position: absolute;
    width: 90%;
    height: 90%;
    max-width: 260px;
    max-height: 260px;
    background: #e53935;
    z-index: 1;
    animation: morphFloat_003 6s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.4);
    border-radius: 50%;
}

/* Circular Image Frame */
.hero-image_003 {
    position: relative;
    z-index: 2;
    width: 80%;
    height: 80%;
    max-width: 240px;
    max-height: 240px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: #fff;
}

/* Morphing Float Animation */
@keyframes morphFloat_003 {
    0%, 100% {
        transform: translateX(-15px) translateY(0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translateX(15px) translateY(-10px) rotate(5deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translateX(15px) translateY(0) rotate(-5deg);
        border-radius: 50% 60% 30% 60% / 30% 70% 40% 50%;
    }
    75% {
        transform: translateX(-15px) translateY(-10px) rotate(5deg);
        border-radius: 70% 30% 50% 50% / 40% 50% 60% 50%;
    }
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Small Mobile (480px+) */
@media (min-width: 480px) {
    .hero-right-image_003 {
        max-width: 350px;
        height: 350px;
    }
    
    .shape-background_003 {
        max-width: 300px;
        max-height: 300px;
    }
    
    .hero-image_003 {
        max-width: 270px;
        max-height: 270px;
        border: 7px solid #fff;
    }
    
    .btn-secondary_003 {
        width: auto;
        min-width: 180px;
    }
    
    .hero-description_003 {
        text-align: justify; /* ✅ Justified text maintained */
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hero-container_003 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
    
    .hero-left-content_003 {
        flex: 1;
        max-width: 55%;
        order: 1;
        text-align: justify; /* ✅ Justified text */
    }
    
    .hero-description_003 {
        text-align: justify; /* ✅ Justified text maintained */
    }
    
    .hero-right-image_003 {
        flex: 0 0 auto;
        max-width: 400px;
        height: 400px;
        order: 2;
        margin: 0;
    }
    
    .shape-background_003 {
        max-width: 350px;
        max-height: 350px;
    }
    
    .hero-image_003 {
        max-width: 320px;
        max-height: 320px;
        border: 8px solid #fff;
    }
    
    .cta-buttons_003 {
        justify-content: flex-start;
    }
}

/* Large Tablet / Small Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero-container_003 {
        gap: 50px;
    }
    
    .hero-left-content_003 {
        max-width: 580px;
        margin-left: 20px;
    }
    
    .hero-right-image_003 {
        max-width: 480px;
        height: 480px;
        transform: translateX(20px);
    }
    
    .shape-background_003 {
        max-width: 420px;
        max-height: 420px;
    }
    
    .hero-image_003 {
        max-width: 380px;
        max-height: 380px;
    }
    
    .btn-secondary_003:hover {
        transform: translateY(-3px) scale(1.02);
    }
}

/* Standard Desktop (1200px+) */
@media (min-width: 1200px) {
    .hero-container_003 {
        gap: 60px;
        padding: 80px 40px;
    }
    
    .hero-left-content_003 {
        max-width: 680px;
    }
    
    .hero-right-image_003 {
        max-width: 520px;
        height: 520px;
        transform: translateX(40px);
    }
    
    .shape-background_003 {
        max-width: 460px;
        max-height: 460px;
    }
    
    .hero-image_003 {
        max-width: 410px;
        max-height: 410px;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero-left-content_003 {
        max-width: 750px;
    }
    
    .hero-right-image_003 {
        max-width: 550px;
        height: 550px;
        transform: translateX(60px);
    }
    
    .shape-background_003 {
        max-width: 480px;
        max-height: 480px;
    }
    
    .hero-image_003 {
        max-width: 420px;
        max-height: 420px;
    }
}

/* Extra Small Devices (320px-400px) */
@media (max-width: 400px) {
    .security-hero-diagonal_003 {
        min-height: auto;
    }
    
    .hero-container_003 {
        padding: 40px 16px;
    }
    
    .hero-heading_003 {
        font-size: 26px;
    }
    
    .hero-description_003 {
        text-align: justify; /* ✅ Justified on smallest screens */
    }
    
    .hero-right-image_003 {
        max-width: 280px;
        height: 280px;
    }
    
    .shape-background_003 {
        max-width: 240px;
        max-height: 240px;
    }
    
    .hero-image_003 {
        max-width: 220px;
        max-height: 220px;
        border: 5px solid #fff;
    }
    
    .iso-badge_003 {
        padding: 8px 16px;
    }
    
    .badge-text_003 {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .security-hero-diagonal_003 {
        min-height: auto;
    }
    
    .hero-container_003 {
        padding: 30px 20px;
        flex-direction: row;
    }
    
    .hero-right-image_003 {
        max-width: 280px;
        height: 280px;
    }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
    .hero-container_003 {
        max-width: 1600px;
    }
    
    .hero-left-content_003 {
        max-width: 820px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .shape-background_003 {
        animation: none;
    }
    
    .btn-secondary_003 {
        transition: none;
    }
    
    .btn-secondary_003:hover {
        transform: none;
    }
}


/* end */


/*<section class="services-section_001">  */

.services-section_001 {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.services-container_001 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header_001 {
    text-align: center;
    margin-bottom: 60px;
}

.service-badge_001 {
    display: inline-block;
    padding: 8px 25px;
    background: #e8f4fd;
    color: #ff0303;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid #d0e8f7;
}

.section-title_001 {
    font-size: 42px;
    color: #001f3f;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title_001 .highlight_001 {
    color: #ff0000;
}

.section-description_001 {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid_001 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Service Card */
.service-card_001 {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card_001:nth-child(1) {
    border-top: 4px solid #e91e63;
}

.service-card_001:nth-child(2) {
    border-top: 4px solid #2196f3;
}

.service-card_001:nth-child(3) {
    border-top: 4px solid #ff9800;
}

.service-card_001:nth-child(4) {
    border-top: 4px solid #4caf50;
}

.service-card_001:nth-child(5) {
    border-top: 4px solid #f44336;
}

.service-card_001:nth-child(6) {
    border-top: 4px solid #9c27b0;
}

/* Card Hover Effect */
.service-card_001:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icon Wrapper */
.icon-wrapper_001 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon_001 {
    font-size: 36px;
}

/* Gradient Backgrounds */
.pink-gradient_001 {
    background: linear-gradient(135deg, #e91e63, #f06292);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.blue-gradient_001 {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.orange-gradient_001 {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.green-gradient_001 {
    background: linear-gradient(135deg, #4caf50, #81c784);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.red-gradient_001 {
    background: linear-gradient(135deg, #f44336, #e57373);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

.purple-gradient_001 {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

/* Card Title */
.card-title_001 {
    font-size: 22px;
    color: #001f3f;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Card Description */
.card-description_001 {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Decorative Circle */
.decorative-circle_001 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.pink-circle_001 {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), transparent);
}

.blue-circle_001 {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), transparent);
}

.orange-circle_001 {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05), transparent);
}

.green-circle_001 {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
}

.red-circle_001 {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.05), transparent);
}

.purple-circle_001 {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), transparent);
}

/* CTA Section */
.cta-section_001 {
    text-align: center;
    background: linear-gradient(135deg, #001f3f, #0057b8);
    padding: 50px 40px;
    border-radius: 15px;
    color: #fff;
}

.cta-title_001 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-description_001 {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons_001 {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary_001 {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #0057b8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary_001:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary_001 {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary_001:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section_001 {
        padding: 60px 20px;
    }

    .section-title_001 {
        font-size: 32px;
    }

    .section-description_001 {
        font-size: 16px;
        text-align: justify;
    }

    .services-grid_001 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-section_001 {
        padding: 40px 30px;
    }

    .cta-title_001 {
        font-size: 26px;
    }

    .cta-description_001 {
        font-size: 16px;
    }

    .cta-buttons_001 {
        flex-direction: column;
    }

    .btn-primary_001,
    .btn-secondary_001 {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-section_001 {
        padding: 50px 15px;
    }

    .section-title_001 {
        font-size: 28px;
    }

    .service-card_001 {
        padding: 30px 25px;
    }

    .card-title_001 {
        font-size: 20px;
    }

    .card-description_001 {
        font-size: 14px;
    }

    .cta-section_001 {
        padding: 35px 25px;
    }

    .cta-title_001 {
        font-size: 24px;
    }

    .btn-primary_001,
    .btn-secondary_001 {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* <section class="why-choose-section_005"> */

.why-choose-section_005 {
    min-height: 100vh;
    width: 100%;
    padding: 80px 5%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header_005 {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.section-title_005 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1e1e1e;
    margin-bottom: 25px;
}

.features-grid_005 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item_005 {
    text-align: left;
    padding: 30px 25px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp_005 0.6s ease forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-item_005:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item_005:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item_005:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item_005:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item_005:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item_005:nth-child(6) {
    animation-delay: 0.6s;
}

/* Pop-up Hover Effect */
.feature-item_005:hover {
    background: #ffffff;
    border: 2px solid #d32f2f;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.25), 
                0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.icon-wrapper_005 {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-icon_005 {
    stroke: #1e5a8e;
    transition: stroke 0.3s ease;
}

.feature-title_005 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-description_005 {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    transition: color 0.3s ease;
}

/* Animations */
@keyframes fadeInUp_005 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features-grid_005 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-section_005 {
        padding: 60px 4%;
        min-height: auto;
    }
    
    .section-title_005 {
        font-size: 2rem;
    }
    
    .features-grid_005 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item_005 {
        padding: 25px 20px;
    }
    
    .feature-item_005:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .feature-title_005 {
        font-size: 20px;
    }
    
    .feature-description_005 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title_005 {
        font-size: 1.75rem;
    }
    
    .feature-item_005 {
        padding: 20px 15px;
    }
    
    .icon-wrapper_005 {
        width: 70px;
        height: 70px;
    }
    
    .feature-title_005 {
        font-size: 18px;
    }
    
    .feature-item_005:hover {
        transform: translateY(-8px) scale(1.01);
    }
}
/* end */



/*=============================== Navbar============= */


/*     <nav class="navbar-section-002"> */

    
      /* Main Navbar Container */
      .navbar-section-002 {
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        position: sticky;
        top: 0;
        z-index: 9998;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      }

      .navbar-inner-002 {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3%;
        height: 70px;
      }

      /* Logo */
      .brand-logo-002 {
        flex-shrink: 0;
        display: flex;
        align-items: center;
      }

      .brand-logo-002 img {
      height: 72px;
    width: 112px;
      }

      /* Center Navigation */
      .menu-list-002 {
        display: flex;
        list-style: none;
        gap: 0;
        margin: 0;
        padding: 0;
        align-items: center;
      }

      .menu-item-002 {
        position: relative;
      }

      .menu-link-002 {
        display: inline-block;
        padding: 25px 15px;
        color: #4b5563;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        white-space: nowrap;
      }

      .menu-link-002:hover,
      .menu-link-002.current-page {
        color: #ff0000;
      }

      .menu-link-002.current-page {
        position: relative;
      }

      .menu-link-002.current-page::after {
        content: "";
        position: absolute;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background: #ff0000;
        border-radius: 50%;
      }

      /* Dropdown */
      .has-dropdown-002 {
        position: relative;
      }

      .menu-link-002.with-arrow {
        display: inline-flex;
        align-items: center;
        gap: 5px;
      }

      .arrow-down-002 {
        font-size: 0.6rem;
        transition: transform 0.3s ease;
      }

      .has-dropdown-002:hover .arrow-down-002 {
        transform: rotate(180deg);
      }

      .submenu-002 {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
        padding: 5px 0;
        list-style: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 100;
      }

      .has-dropdown-002:hover .submenu-002 {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .submenu-002 li {
        margin: 0;
      }

      .submenu-link-002 {
        display: block;
        padding: 10px 20px;
        color: #4b5563;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: none;
        letter-spacing: 0;
      }

      .submenu-link-002:hover {
        background: #fef3c7;
        color: #d4a024;
        padding-left: 25px;
      }

      /* Right Contact Section */
      .contact-box-002 {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 15px;
        background: #fff;
      }

      .phone-icon-002 {
        width: 35px;
        height: 35px;
        background: #ff0000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .phone-icon-002 svg {
        width: 18px;
        height: 18px;
        fill: #ffffff;
      }

      .contact-text-002 {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
      }

      .contact-label-002 {
        font-size: 0.75rem;
        color: #6b7280;
        font-weight: 500;
      }

      .phone-num-002 {
        font-size: 0.95rem;
        color: #ff0707;
        font-weight: 700;
        text-decoration: none;
      }

      .phone-num-002:hover {
        color: #b8860b;
      }

      /* Mobile Toggle */
      .hamburger-002 {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
      }

      .bar-line-002 {
        width: 25px;
        height: 3px;
        background: #4b5563;
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      .hamburger-002.is-active .bar-line-002:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
      }

      .hamburger-002.is-active .bar-line-002:nth-child(2) {
        opacity: 0;
      }

      .hamburger-002.is-active .bar-line-002:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
      }

      /* Responsive */
      @media (max-width: 1200px) {
        .menu-link-002 {
          padding: 25px 12px;
          font-size: 0.85rem;
        }
      }

      @media (max-width: 1024px) {
        .menu-link-002 {
          padding: 25px 10px;
          font-size: 0.8rem;
        }

        .contact-label-002 {
          font-size: 0.7rem;
        }

        .phone-num-002 {
          font-size: 0.85rem;
        }
      }

      @media (max-width: 768px) {
        .navbar-inner-002 {
          height: 65px;
        }

        .brand-logo-002 img {
          height: 38px;
        }

        .hamburger-002 {
          display: flex;
        }

        .menu-list-002 {
          position: fixed;
          top: 65px;
          left: 0;
          right: 0;
          flex-direction: column;
          background: #ffffff;
          padding: 15px;
          gap: 0;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-20px);
          transition: all 0.3s ease;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          max-height: calc(100vh - 65px);
          overflow-y: auto;
          align-items: stretch;
        }

        .menu-list-002.show-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }

        .menu-item-002 {
          width: 100%;
          border-bottom: 1px solid #f3f4f6;
        }

        .menu-link-002 {
          padding: 15px 10px;
          width: 100%;
          display: block;
        }

        .menu-link-002.current-page::after {
          bottom: auto;
          left: 5px;
          top: 50%;
          transform: translateY(-50%);
        }

        .submenu-002 {
          position: static;
          opacity: 0;
          visibility: hidden;
          max-height: 0;
          overflow: hidden;
          transform: none;
          border: none;
          box-shadow: none;
          background: #f9fafb;
          transition: all 0.3s ease;
        }

        .has-dropdown-002.open-dropdown .submenu-002 {
          opacity: 1;
          visibility: visible;
          max-height: 438px;
          padding: 5px 0;
        }

        .has-dropdown-002.open-dropdown .arrow-down-002 {
          transform: rotate(180deg);
        }

        .contact-box-002 {
          justify-content: center;
          margin-top: 1px;
          /* padding: 15px;
          border-top: 2px solid #f3f4f6; */
        }
      }

      @media (max-width: 480px) {
        .brand-logo-002 img {
          height: 60px;
        }

        .menu-link-002 {
          font-size: 0.85rem;
          padding: 12px 10px;
        }

        .phone-icon-002 {
          width: 32px;
          height: 32px;
        }

        .phone-icon-002 svg {
          width: 16px;
          height: 16px;
        }
      }
    
/* end */

/* <section class="clients_showcase_section"> */
 /* ===================================
   CLIENT LOGO SHOWCASE - RED DOTTED DESIGN
   =================================== */

.clients_showcase_section {
  padding: 100px 5%;
  background: #ffffff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

/* ✅ RED DOTTED BACKGROUND PATTERN */
.clients_showcase_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ff0000 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.15;
  z-index: 0;
}

/* Container */
.clients_showcase_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===================================
   SECTION HEADER
   =================================== */

.clients_showcase_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.clients_showcase_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: red;
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.clients_showcase_title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.clients_showcase_highlight {
  position: relative;
  display: inline-block;
  color: #ff0000;
}

.clients_showcase_subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ===================================
   STATIC LOGO GRID (NO MARQUEE)
   =================================== */

.clients_logo_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Logo Box */
.client_logo_box {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  height: 140px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f1f5f9;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect with Red Border */
.client_logo_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #dc2626);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.client_logo_box:hover::before {
  transform: scaleX(1);
}

.client_logo_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
  border-color: #ff0000;
}

/* Logo Image */
.client_logo_img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.4s ease;
}

.client_logo_box:hover .client_logo_img {
  transform: scale(1.1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .clients_logo_grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
  }

  .client_logo_box {
    height: 150px;
    padding: 35px;
  }
}

/* Desktop (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .clients_logo_grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .client_logo_box {
    height: 140px;
  }
}

/* Laptop (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .clients_showcase_section {
    padding: 90px 5%;
  }

  .clients_logo_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .client_logo_box {
    height: 130px;
    padding: 25px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1023px) {
  .clients_showcase_section {
    padding: 80px 5%;
  }

  .clients_showcase_header {
    margin-bottom: 50px;
  }

  .clients_logo_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .client_logo_box {
    height: 120px;
    padding: 20px;
  }
}

/* Mobile Large (480px - 768px) */
@media (max-width: 767px) {
  .clients_showcase_section {
    padding: 70px 4%;
  }

  .clients_logo_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .client_logo_box {
    height: 110px;
    padding: 18px;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 479px) {
  .clients_showcase_section {
    padding: 60px 4%;
  }

  .clients_showcase_badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .clients_logo_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .client_logo_box {
    height: 100px;
    padding: 15px;
  }
}

/* Very Small Mobile (320px - 360px) */
@media (max-width: 360px) {
  .clients_showcase_section {
    padding: 50px 3%;
  }

  .clients_logo_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client_logo_box {
    height: 100px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .clients_showcase_section {
    padding: 50px 4%;
  }

  .clients_logo_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .client_logo_box,
  .client_logo_img {
    transition: none;
  }

  .client_logo_box:hover {
    transform: none;
  }

  .client_logo_box:hover .client_logo_img {
    transform: none;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .clients_showcase_container {
    max-width: 1600px;
  }

  .clients_logo_grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }

  .client_logo_box {
    height: 160px;
    padding: 40px;
  }
}



/* end */


/* =========== clients.html================= */

/* <section class="gallery_grid_section"> */

/* ===================================
   GALLERY GRID SECTION - BALANCED LAYOUT
   =================================== */

.gallery_grid_section {
  padding: 100px 5%;
  background: #ffffff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.gallery_grid_container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===================================
   SECTION HEADER
   =================================== */

.gallery_grid_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.gallery_grid_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: red;
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.gallery_grid_title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.gallery_grid_highlight {
  position: relative;
  display: inline-block;
  color: #ff0000;
}

.gallery_grid_subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ===================================
   BALANCED GRID LAYOUT
   =================================== */

.gallery_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
  grid-auto-flow: dense; /* Fills gaps automatically */
}

/* Gallery Item Base */
.gallery_grid_item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 350px; /* Uniform height for consistency */
  background: #f1f5f9;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.gallery_grid_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Wide Items (Landscape) */
.gallery_wide {
  grid-column: span 2;
  height: 280px;
}

/* Tall Items (Portrait) */
.gallery_tall {
  grid-row: span 2;
  height: 720px; /* 2x height + gap */
}

/* Gallery Image - object-fit for proper display */
.gallery_grid_img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintains aspect ratio, crops to fit */
  object-position: center;
  transition: transform 0.6s ease;
}

.gallery_grid_item:hover .gallery_grid_img {
  transform: scale(1.15);
}

/* Overlay Effect */
.gallery_grid_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery_grid_item:hover .gallery_grid_overlay {
  opacity: 1;
}

/* Overlay Content */
.gallery_grid_content {
  color: #ffffff;
  width: 100%;
}

.gallery_grid_title_text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery_grid_desc {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  opacity: 0.95;
  margin: 0;
  line-height: 1.5;
}

/* ===================================
   CTA BUTTON
   =================================== */

.gallery_grid_cta_wrapper {
  text-align: center;
  margin-top: 50px;
}

.gallery_grid_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.gallery_grid_cta_btn:hover {
  background: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.3);
}

.gallery_grid_arrow {
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}

.gallery_grid_cta_btn:hover .gallery_grid_arrow {
  transform: translateX(5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .gallery_grid_wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .gallery_grid_item {
    height: 380px;
  }

  .gallery_wide {
    height: 300px;
  }

  .gallery_tall {
    height: 785px; /* 2x height + gap */
  }
}

/* Desktop (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .gallery_grid_wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

/* Laptop (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .gallery_grid_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery_grid_item {
    height: 320px;
  }

  .gallery_wide {
    height: 260px;
  }

  .gallery_tall {
    height: 660px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1023px) {
  .gallery_grid_section {
    padding: 80px 5%;
  }

  .gallery_grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery_grid_item {
    height: 300px;
  }

  .gallery_wide {
    grid-column: span 2;
    height: 250px;
  }

  .gallery_tall {
    grid-row: span 2;
    height: 618px;
  }

  .gallery_grid_overlay {
    padding: 25px;
  }
}

/* Mobile Large (480px - 768px) */
@media (max-width: 767px) {
  .gallery_grid_section {
    padding: 70px 4%;
  }

  .gallery_grid_header {
    margin-bottom: 50px;
  }

  .gallery_grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery_grid_item {
    height: 220px;
  }

  /* All items same size on mobile */
  .gallery_wide {
    grid-column: span 1;
    height: 220px;
  }

  .gallery_tall {
    grid-row: span 1;
    height: 220px;
  }

  .gallery_grid_overlay {
    padding: 18px;
    opacity: 1; /* Always visible on mobile */
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75) 0%,
      transparent 60%
    );
  }

  .gallery_grid_cta_btn {
    width: 100%;
    max-width: 400px;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 479px) {
  .gallery_grid_section {
    padding: 60px 4%;
  }

  .gallery_grid_badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .gallery_grid_wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery_grid_item {
    height: 280px;
  }

  .gallery_wide,
  .gallery_tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 280px;
  }

  .gallery_grid_overlay {
    padding: 15px;
  }

  .gallery_grid_title_text {
    font-size: 1rem;
  }

  .gallery_grid_desc {
    font-size: 0.8rem;
  }

  .gallery_grid_cta_wrapper {
    margin-top: 40px;
  }

  .gallery_grid_cta_btn {
    padding: 16px 35px;
    font-size: 1rem;
    width: 100%;
  }
}

/* Very Small Mobile (320px - 360px) */
@media (max-width: 360px) {
  .gallery_grid_section {
    padding: 50px 3%;
  }

  .gallery_grid_item {
    height: 260px;
  }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .gallery_grid_section {
    padding: 50px 4%;
  }

  .gallery_grid_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery_grid_item {
    height: 200px;
  }

  .gallery_tall {
    height: 200px;
    grid-row: span 1;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .gallery_grid_container {
    max-width: 1800px;
  }

  .gallery_grid_wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .gallery_grid_item,
  .gallery_grid_img,
  .gallery_grid_overlay,
  .gallery_grid_cta_btn {
    transition: none;
  }

  .gallery_grid_item:hover {
    transform: none;
  }

  .gallery_grid_item:hover .gallery_grid_img {
    transform: none;
  }
}
/* end */

/*  */
/* ===================================
   CONTACT US SECTION
   =================================== */

.contact_us_section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.contact_us_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===================================
   SECTION HEADER
   =================================== */

.contact_us_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.contact_us_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: red;
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.contact_us_title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.contact_us_highlight {
  position: relative;
  display: inline-block;
  color: #ff0000;
}

.contact_us_subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ===================================
   CONTACT CONTENT WRAPPER
   =================================== */

.contact_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

/* ===================================
   CONTACT INFO SECTION (LEFT)
   =================================== */

.contact_info_section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_info_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
}

.contact_info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.12);
  border-color: #ff0000;
}

/* Contact Info Icons */
.contact_info_icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact_icon_phone {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.contact_icon_email {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
}

.contact_icon_location {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.contact_icon_time {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

/* Contact Info Content */
.contact_info_content {
  flex: 1;
}

.contact_info_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact_info_text {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
}

.contact_info_link {
  display: block;
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.contact_info_link:hover {
  color: #dc2626;
  transform: translateX(3px);
}

.contact_info_address {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.contact_emergency_btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.contact_emergency_btn:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* ===================================
   3D FLOATING ANIMATION SECTION
   =================================== */

.security_3d_animation {
  position: absolute;
  top: -50px;
  right: 30px;
  width: 200px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

/* Floating Shield */
.floating_shield {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  animation: float3d 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

.shield_icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Floating Lock */
.floating_lock {
  position: absolute;
  top: 60px;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
  animation: float3d 5s ease-in-out infinite 0.5s;
  transform-style: preserve-3d;
}

.lock_icon {
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Floating Key */
.floating_key {
  position: absolute;
  top: 100px;
  left: 10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  animation: float3d 6s ease-in-out infinite 1s;
  transform-style: preserve-3d;
}

.key_icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* 3D Floating Animation Keyframes */
@keyframes float3d {
  0%, 100% {
    transform: translateY(0) translateZ(0) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-20px) translateZ(20px) rotateY(15deg) rotateX(10deg);
  }
  50% {
    transform: translateY(-10px) translateZ(40px) rotateY(0deg) rotateX(-10deg);
  }
  75% {
    transform: translateY(-25px) translateZ(20px) rotateY(-15deg) rotateX(5deg);
  }
}

/* ===================================
   CONTACT FORM SECTION (RIGHT)
   =================================== */

.contact_form_section {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.contact_form_wrapper {
  position: relative;
  z-index: 2;
}

.contact_form_title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact_form_subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 30px;
}

/* Form Styling */
.contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
}

.form_label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.form_input,
.form_select,
.form_textarea {
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
  outline: none;
  border-color: #ff0000;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
}

.form_textarea {
  resize: vertical;
  min-height: 120px;
}

.form_select {
  cursor: pointer;
}

/* Submit Button */
.form_submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
  margin-top: 10px;
}

.form_submit_btn:hover {
  background: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.3);
}

.submit_arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.form_submit_btn:hover .submit_arrow {
  transform: translateX(5px);
}

/* ===================================
   MAP SECTION
   =================================== */

.contact_map_section {
  margin-bottom: 60px;
}

.contact_map_title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 30px;
}

.contact_map_wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
}

.contact_map {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===================================
   SOCIAL MEDIA SECTION
   =================================== */

.contact_social_section {
  text-align: center;
}

.contact_social_title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 30px;
}

.contact_social_links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social_facebook {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.social_instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

.social_linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.social_twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social_whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social_link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Laptop (1024px - 1200px) */
@media (max-width: 1199px) {
  .contact_content_wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
  }

  .contact_form_section {
    padding: 35px;
  }

  .security_3d_animation {
    width: 150px;
    height: 150px;
    right: 20px;
  }

  .floating_shield {
    width: 65px;
    height: 65px;
  }

  .floating_lock {
    width: 50px;
    height: 50px;
  }

  .floating_key {
    width: 40px;
    height: 40px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1023px) {
  .contact_us_section {
    padding: 80px 5%;
  }

  .contact_content_wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact_info_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .security_3d_animation {
    top: -30px;
    right: 15px;
    width: 120px;
    height: 120px;
  }

  .contact_map {
    height: 400px;
  }
}

/* Mobile Large (480px - 768px) */
@media (max-width: 767px) {
  .contact_us_section {
    padding: 70px 4%;
  }

  .contact_us_header {
    margin-bottom: 50px;
  }

  .contact_content_wrapper {
    margin-bottom: 60px;
  }

  .contact_info_section {
    grid-template-columns: 1fr;
  }

  /* ✅ Center text on mobile */
  .contact_info_card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .contact_info_icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    margin: 0 auto 15px;
  }

  .contact_info_content {
    text-align: center;
  }

  .contact_info_link {
    text-align: center;
  }

  .contact_emergency_btn {
    width: 100%;
  }

  .contact_form_section {
    padding: 30px 25px;
  }

  /* Hide 3D animation on mobile */
  .security_3d_animation {
    display: none;
  }

  .contact_map {
    height: 350px;
  }

  .contact_social_links {
    gap: 12px;
  }

  .social_link {
    padding: 12px 22px;
    font-size: 0.9rem;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 479px) {
  .contact_us_section {
    padding: 60px 4%;
  }

  .contact_us_badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  /* ✅ Center all text on small mobile */
  .contact_us_title,
  .contact_us_subtitle,
  .contact_form_title,
  .contact_form_subtitle {
    text-align: center;
  }

  .contact_form_section {
    padding: 25px 20px;
  }

  .form_input,
  .form_select,
  .form_textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .form_submit_btn {
    width: 100%;
    padding: 14px 30px;
  }

  .contact_map {
    height: 300px;
  }

  .social_link {
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .security_3d_animation * {
    animation: none !important;
  }

  .contact_info_card,
  .form_submit_btn,
  .social_link,
  .contact_info_link {
    transition: none;
  }

  .contact_info_card:hover,
  .form_submit_btn:hover,
  .social_link:hover {
    transform: none;
  }
}

/* end */

/* ==========./blog.php============ */

/*<section class="blog_section">  */
/* ===================================
   BLOG SECTION - 2025 DESIGN
   =================================== */

.blog_section {
  padding: 100px 5%;
  background: #ffffff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.blog_container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===================================
   SECTION HEADER
   =================================== */

.blog_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.blog_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: red;
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.blog_title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.blog_highlight {
  position: relative;
  display: inline-block;
  color: #ff0000;
}

.blog_subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
}

/* ===================================
   BLOG GRID LAYOUT
   =================================== */

.blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .blog_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog_grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Card Base */
.blog_card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f1f5f9;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #ff0000;
}

/* Featured Blog Card (Larger) */
.blog_featured {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .blog_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog_featured {
    grid-column: span 3;
    flex-direction: row;
  }
  
  .blog_featured .blog_image_wrapper {
    flex: 0 0 50%;
    height: auto;
  }
  
  .blog_featured .blog_content {
    flex: 1;
    padding: 40px;
  }
}

/* ===================================
   BLOG IMAGE - SHOW FROM TOP
   =================================== */

.blog_image_wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f1f5f9;
}

.blog_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* ✅ Show image from TOP (50% se upar) */
  transition: transform 0.6s ease;
}

.blog_card:hover .blog_image {
  transform: scale(1.1);
}

/* Featured Blog Image */
.blog_featured .blog_image_wrapper {
  height: 100%;
}

.blog_featured .blog_image {
  object-position: top; /* ✅ Top portion for featured */
}

/* Category Badge */
.blog_category_badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.blog_cat_featured {
  background: linear-gradient(135deg, #ff0000, #dc2626);
}

.blog_cat_tech {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.blog_cat_residential {
  background: linear-gradient(135deg, #10b981, #059669);
}

.blog_cat_corporate {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.blog_cat_events {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.blog_cat_training {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

/* ===================================
   BLOG CONTENT
   =================================== */

.blog_content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Blog Meta Info */
.blog_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #64748b;
}

.blog_author,
.blog_date,
.blog_reading_time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.author_icon,
.date_icon,
.time_icon {
  font-size: 0.9rem;
}

/* Blog Title */
.blog_card_title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_card:hover .blog_card_title {
  color: #ff0000;
}

/* Blog Excerpt */
.blog_excerpt {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More Link */
.blog_read_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff0000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog_read_more:hover {
  gap: 12px;
}

.read_arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.blog_read_more:hover .read_arrow {
  transform: translateX(5px);
}

/* ===================================
   VIEW ALL BUTTON
   =================================== */

.blog_cta_wrapper {
  text-align: center;
  margin-top: 50px;
}

.blog_cta_button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.blog_cta_button:hover {
  background: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.3);
}

.blog_cta_arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.blog_cta_button:hover .blog_cta_arrow {
  transform: translateX(5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  .blog_grid {
    gap: 35px;
  }

  .blog_image_wrapper {
    height: 300px;
  }
}

/* Laptop (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .blog_section {
    padding: 90px 5%;
  }

  .blog_featured .blog_content {
    padding: 35px;
  }

  .blog_image_wrapper {
    height: 280px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1023px) {
  .blog_section {
    padding: 80px 5%;
  }

  .blog_header {
    margin-bottom: 50px;
  }

  .blog_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog_featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .blog_featured .blog_image_wrapper {
    height: 300px;
  }

  .blog_featured .blog_content {
    padding: 30px;
  }

  .blog_content {
    padding: 25px;
  }

  .blog_image_wrapper {
    height: 260px;
  }

  .blog_image {
    object-position: top; /* ✅ Top se show kare */
  }
}

/* Mobile Large (480px - 768px) */
@media (max-width: 767px) {
  .blog_section {
    padding: 70px 4%;
  }

  .blog_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog_featured {
    grid-column: span 1;
  }

  .blog_image_wrapper {
    height: 240px;
  }

  .blog_featured .blog_image_wrapper {
    height: 260px;
  }

  .blog_image {
    object-position: top; /* ✅ Mobile pe top se dikhega */
  }

  .blog_content {
    padding: 20px;
  }

  .blog_meta {
    gap: 12px;
    font-size: 0.8rem;
  }

  .blog_reading_time {
    display: none;
  }

  .blog_card_title {
    font-size: 1.15rem;
  }

  .blog_excerpt {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 479px) {
  .blog_section {
    padding: 60px 4%;
  }

  .blog_badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .blog_grid {
    gap: 18px;
  }

  .blog_image_wrapper {
    height: 220px;
  }

  .blog_featured .blog_image_wrapper {
    height: 240px;
  }

  .blog_image {
    object-position: top; /* ✅ Small mobile pe bhi top se */
  }

  .blog_content {
    padding: 18px;
  }

  .blog_meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .blog_card_title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .blog_excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .blog_read_more {
    font-size: 0.9rem;
  }

  .blog_cta_wrapper {
    margin-top: 40px;
  }

  .blog_cta_button {
    width: 100%;
    padding: 16px 35px;
    font-size: 1rem;
    justify-content: center;
  }
}

/* Very Small Mobile (320px - 360px) */
@media (max-width: 360px) {
  .blog_section {
    padding: 50px 3%;
  }

  .blog_image_wrapper {
    height: 200px;
  }

  .blog_featured .blog_image_wrapper {
    height: 220px;
  }

  .blog_image {
    object-position: top; /* ✅ Sabse chhote screen pe bhi top se */
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .blog_card,
  .blog_image,
  .blog_read_more,
  .blog_cta_button {
    transition: none;
  }

  .blog_card:hover {
    transform: none;
  }

  .blog_card:hover .blog_image {
    transform: none;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .blog_container {
    max-width: 1600px;
  }

  .blog_grid {
    gap: 40px;
  }

  .blog_image_wrapper {
    height: 320px;
  }
}

/* end */



/*  */

/* Popup Overlay */
.quote-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.quote-form-overlay.active {
  display: flex;
  opacity: 1;
}

/* Main Container */
.quote-form-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 45% 55%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 95vh;
  overflow-y: auto;
}

.quote-form-overlay.active .quote-form-container {
  transform: scale(1);
}

/* Close Button */
.quote-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #64748b;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-close-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Left Section */
.quote-form-left {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.quote-form-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.quote-form-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.logo-shield {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.quote-form-logo h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.quote-form-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.quote-form-subtitle {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.quote-contact-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
  position: relative;
  z-index: 2;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Right Section - Form */
.quote-form-right {
  background: #f8fafc;
  padding: 50px 40px;
}

.form-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  background: #ffffff;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.quote-submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 12px;
}

/* Tablet */
@media (max-width: 992px) {
  .quote-form-container {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }

  .quote-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
  }

  .quote-form-left {
    padding: 45px 35px;
  }

  .quote-form-right {
    padding: 45px 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .quote-form-overlay {
    padding: 10px;
    align-items: flex-start;
  }

  .quote-form-container {
    border-radius: 18px;
    max-height: 95vh;
    margin-top: 10px;
  }

  .quote-close-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  /* Form shows first on mobile */
  .quote-form-right {
    order: 1;
    padding: 50px 25px 35px;
  }

  .quote-form-left {
    order: 2;
    padding: 35px 25px;
  }

  .quote-form-title {
    font-size: 1.7rem;
  }

  .form-heading {
    font-size: 1.6rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .quote-form-overlay {
    padding: 6px;
  }

  .quote-form-container {
    border-radius: 16px;
  }

  .quote-close-btn {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .quote-form-left {
    padding: 30px 20px;
  }

  .quote-form-title {
    font-size: 1.5rem;
  }

  .quote-form-subtitle {
    font-size: 0.9rem;
  }

  .quote-form-right {
    padding: 45px 20px 30px;
  }

  .form-heading {
    font-size: 1.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .quote-submit-btn {
    padding: 15px;
    font-size: 0.95rem;
  }
}


/* end */


/* <section class="pest-control-section_14"> */

/* ===================================
   PEST CONTROL SECTION - 2025 DESIGN
   =================================== */


  /* Pest Control Section */
.pest-control-section_14 {
  width: 100%;
  background: #ffffff;
}

/* Top Banner */
.top-banner_14 {
  background: #0A4080;
  padding: 12px 20px;
  text-align: center;
}

.banner-text_14 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* Main Container */
.main-container_14 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Title Block */
.title-block_14 {
  text-align: center;
  margin-bottom: 80px;
}

.label_14 {
  display: inline-block;
  background: #fee;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #dc2626;
}

.page-title_14 {
  color: #000000;
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.subtitle_14 {
  color: #64748b;
  font-size: 1.15rem;
  margin: 0;
}

/* Process Block */
.process-block_14 {
  margin-bottom: 80px;
}

.block-heading_14 {
  color: #000000;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 3px solid #dc2626;
}

.block-intro_14 {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 40px 0;
}

.block-intro_14 strong {
  color: #dc2626;
  font-weight: 700;
}

/* Steps Wrapper */
.steps-wrapper_14 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.step-box_14 {
  background: #f8fafc;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
  transition: all 0.3s ease;
}

.step-box_14:hover {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
  transform: translateX(4px);
}

.step-header_14 {
  margin-bottom: 12px;
}

.step-num_14 {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.step-name_14 {
  color: #000000;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0 0 0;
}

.step-info_14 {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Highlight Box */
.highlight-box_14 {
  background: #0A4080;
  color: #ffffff;
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #dc2626;
}

.highlight-box_14 p {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.highlight-box_14 strong {
  color: #dc2626;
}

/* Partner Block */
.partner-block_14 {
  margin-bottom: 40px;
}

.text-block_14 {
  margin-bottom: 50px;
}

.text-block_14 p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.text-block_14 strong {
  color: #dc2626;
  font-weight: 700;
}

/* Features Grid */
.features-grid_14 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.feature_14 {
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature_14:hover {
  background: #000000;
  border-color: #dc2626;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

.feature_14:hover .feature-icon_14,
.feature_14:hover span {
  color: #dc2626;
}

.feature-icon_14 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.feature_14 span {
  display: block;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Action Box */
.action-box_14 {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 2px solid #dc2626;
}

.action-text_14 h3 {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.action-text_14 p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

.action-buttons_14 {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-action_14,
.btn-phone_14 {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-action_14 {
  background: #dc2626;
  color: #ffffff;
}

.btn-action_14:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-phone_14 {
  background: #ffffff;
  color: #000000;
  border: 2px solid #dc2626;
}

.btn-phone_14:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .main-container_14 { padding: 40px 16px; }
  .page-title_14 { font-size: 2.2rem; }
  .block-heading_14 { font-size: 1.8rem; }
  .steps-wrapper_14 { grid-template-columns: 1fr; }
  .features-grid_14 { grid-template-columns: repeat(3, 1fr); }
  .action-box_14 { 
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .action-buttons_14 { 
    flex-direction: column;
    width: 100%;
  }
  .btn-action_14, .btn-phone_14 { width: 100%; }
}

@media (max-width: 480px) {
  .page-title_14 { font-size: 1.8rem; }
  .block-heading_14 { font-size: 1.5rem; }
  .features-grid_14 { grid-template-columns: repeat(2, 1fr); }
  .step-box_14 { padding: 20px; }
}


/* end */


/* Mobile Small (320px - 480px) */
/* ===================================
   FLOATING CONTACT BUTTONS - WHATSAPP & CALL
   =================================== */
  .tw2-floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.tw2-floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366; /* default green */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-size: 24px;
  text-decoration: none;
}

.tw2-whatsapp-btn {
  background-color: #25d366;
}

.tw2-call-btn {
  background-color: #0f88f2;
}

.tw2-floating-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .tw2-floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .tw2-floating-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
/* end */