/* ====================================
   UNIFIED SECURITY SERVICES STYLESHEET
   ==================================== */

/* === CSS Variables === */
:root {
   	
	
	
	
	 /* Core brand */
  --color-primary: #153F89;        /* brand blue 0A3D91*/
  --color-primary-rgb: 21,63,137;
  --color-primary-600: #153F89;    /* main */
  --color-primary-500: #1F5CC0;    /* lighter / for gradients */
  --color-primary-400: #3A78D1;    /* accent tint */
  --color-primary-200: #9DBFF0;    /* use for soft backgrounds */

  /* Secondary (accent) */
  --color-secondary: #FFC107;      /* amber */
  --color-secondary-rgb: 255,193,7;
  --color-secondary-600: #FFB300;  /* darker */
  --color-secondary-400: #FFD54A;  /* lighter */
	
	
	
	--neutral-100: #FFFFFF;
  --neutral-200: #FFFBF2;
  --neutral-300: #F7F3EA;
  --neutral-400: #EFE7D0;
  --neutral-500: #E5E5E5;
  --text-on-dark: #FFFFFF;
  --text-primary: #111827;
	
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #fff9e6;
	--bg-gradient-secondary-start: #153F89;
	--bg-gradient-secondary-end: #1F5CC0;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --card-bg: #ffffff;
    --card-border: #fff3cd;
    --feature-bg-start: #fffbea;
    --feature-bg-end: #fff9e6;
	
	--badge-padding: 0.5rem 1rem;
  --badge-border-radius: 4px;
  --badge-border-radius-20: 20px;
  --badge-border-radius-30: 30px;
  --badge-border-radius-50: 50px;
  
  --badge-font-size: 0.9rem;
    --shadow-sm: 0 5px 15px rgba(21,63,137,0.10);
  --shadow-md: 0 10px 30px rgba(21,63,137,0.12);
  --shadow-lg: 0 20px 60px rgba(21,63,137,0.25);
  --shadow-hover: 0 20px 50px rgba(21,63,137,0.25);

  --gradient-primary: linear-gradient(135deg, #153F89 0%, #1F5CC0 100%);
  /*--gradient-hero: linear-gradient(180deg, rgba(21,63,137,0.95) 0%, rgba(31,92,192,0.6) 100%);*/
  
  
   --gradient-hero:linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
/* #1F5CC0 → #153F89 */
	--gradient-section: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
	
    --whatsapp-shadow-color: rgba(37, 211, 102, 0.6);
    --whatsapp-pulse-color: rgba(37, 211, 102, 0.4);
    --whatsapp-float-size: 60px;
    --whatsapp-float-bottom: 20px;
    --whatsapp-float-right: 20px;
	
	
    /* Define WhatsApp colors */
    --whatsapp-color-secondary-400: #25D366; /* Base WhatsApp Green */
    --whatsapp-color-hover: #1ebe5d;   /* Slightly darker green for hover */
    --whatsapp-color-active: #128C7E;  /* Darker teal for click/active */
    
    /* Variables for the CTA style */
    --whatsapp-shadow-color-base: rgba(37, 211, 102, 0.3); /* Green shadow base */
    --whatsapp-shadow-color-hover: rgba(37, 211, 102, 0.4); /* Enhanced green shadow */

}

/* === Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   /* background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);*/
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.primary-color {
    color: var(--color-primary);
}
.secondary-color {
    color: var(--color-secondary);
}
/* === Hero Section === */
.hero {
    position: relative;
    margin-bottom: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-secondary-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 193, 7, 0.35);
}

/* === Cards === */
.glow-card {
	background: var(--neutral-100);
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
    
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
	
    border-radius: 20px;
	
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-secondary-400), var(--color-secondary-600), var(--color-secondary-400));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 0.2;
}

.glow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-secondary-400);
}

/* === Section Titles === */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
}

/* === Grid Layouts === */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* === Feature Items === */
.feature-item {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--feature-bg-end) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--color-secondary-400);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--feature-bg-end) 0%, var(--card-border) 100%);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.feature-item h4 {
    color: var(--color-secondary-600);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === Icon Box === */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-secondary-600);
    border-radius: 10px;
    font-size: 1.2rem;
    /*box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);*/
}

/* === Feature List (with checkmarks) === */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--feature-bg-end) 100%);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary-400);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.08);
}

.feature-list li:hover {
    background: linear-gradient(135deg, var(--feature-bg-end) 0%, var(--card-border) 100%);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.15);
}

.feature-list li strong {
    color: var(--color-primary);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-secondary-400) 0%, var(--color-secondary-600) 100%);
    border-radius: 50%;
    color: #1a202c;
    font-weight: bold;
    margin-right: 10px;
    float: left;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* === Industry/Service Cards === */
.industry-card,
.service-card {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--feature-bg-end) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.industry-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25);
    border-color: var(--color-secondary-400);
    background: var(--card-bg);
}

.industry-card .emoji,
.service-card .emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.industry-card h4,
.service-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* === Info Banner === */
.info-banner {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--card-border) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--color-secondary-400);
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.15);
}

.info-banner strong {
    color: var(--color-secondary-600);
    font-size: 1.1rem;
}

.info-banner em {
    color: var(--text-secondary);
}

/* === Benefits/Why Choose List === */
.benefits-list,
.why-choose-list {
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 30px auto 0;
}

.benefits-list li,
.why-choose-list li {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--feature-bg-end) 100%);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--color-secondary-400);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefits-list li:hover,
.why-choose-list li:hover {
    background: var(--card-bg);
    transform: translateX(15px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.25);
}

.benefits-list li strong,
.why-choose-list li strong {
    color: var(--color-secondary-600);
    font-size: 1.15rem;
    display: block;
    margin-bottom: 8px;
}

.benefits-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--color-secondary-400) 0%, var(--color-secondary-600) 100%);
    border-radius: 50%;
    color: #1a202c;
    font-weight: bold;
    margin-right: 15px;
    float: left;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.why-choose-list li::before {
    content: '🛡️';
    font-size: 1.8rem;
    margin-right: 15px;
    float: left;
}

/* === Importance Grid === */
.importance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.importance-item {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--feature-bg-end) 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 3px solid var(--color-secondary-400);
    transition: all 0.3s ease;
}

.importance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.importance-item strong {
    color: var(--color-secondary-600);
    font-size: 1.05rem;
}

.importance-item::before {
    content: '⭐';
    font-size: 1.5rem;
    margin-right: 10px;
}

/* === CTA Section === */
.cta-section {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21, 63, 137, 0.35);

}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-section h2,
.cta-section h3 {
    color: #FFFFFF; /* White text for contrast */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative; /* Ensure text sits above the ::before shimmer */
    z-index: 5;
}

.cta-section p {
    color: #E0E0E0; /* Slightly off-white for body text */
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
}

.cta-section .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-color-secondary-400) ;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 32, 44, 0.3);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
   color: #fff;
    background-color: var(--whatsapp-color-hover) !important;
	box-shadow: 0 12px 35px var(--whatsapp-shadow-color-hover); /* Stronger shadow */
}

.cta-note {
    margin-top: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}


.cta-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 25px; font-size: 0.9rem; color: var(--text-secondary); }

.cta-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--badge-border-radius-30);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--neutral-100);
    font-weight: 500;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.highlight-badges {
  /* Flexbox for alignment and spacing */
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 25px; font-size: 0.9rem; 
}

.highlight-badges > span {
  /* Style for each individual badge item */
  display: inline-flex;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--neutral-100);
  padding: var(--badge-padding);
  border-radius: var(--badge-border-radius-30);
      backdrop-filter: blur(6px);
    transition: all 0.25s 
ease;
}
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Style for the checkmark (✓) for better visual separation */
.highlight-badges > span::before {
  content: '✓';
  margin-right: 8px; /* Space between checkmark and text */
  font-weight: 900; /* Make the checkmark bolder */
  color: #a4e69b; /* A light green for the checkmark to signify approval/certified */
  font-size: 1.1em;
}

.cta-compact-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-compact-badges span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: var(--badge-border-radius-20);
    border: 1px solid rgba(255, 193, 7, 0.3);
}
@media (max-width: 768px) {
   

    .cta-compact-badges {
        flex-direction: column;
        gap: 10px;
    }
}
/* === Gradient Accents === */
.gradient-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.accent-1 {
    top: -200px;
    right: -200px;
}

.accent-2 {
    bottom: -200px;
    left: -200px;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === Responsive Design === */
@media (max-width: 968px) {
    .hero-content,
    .grid-2,
    .importance-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2,
    .cta-section h3 {
        font-size: 2rem;
    }

    .container {
        padding: 40px 20px;
    }
}

@media (max-width: 640px) {
    .grid-3,
    .grid-auto {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* === Homepage Specific Styles === */

/* Hero Slider */
.hero-slider-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.85) 0%, rgba(255, 179, 0, 0.75) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-slide-content p {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #1a202c;
    color: var(--color-secondary-400);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 32, 44, 0.4);
}

.hero-slide-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 32, 44, 0.6);
    background: #2d3748;
}

.hero-slide-button span {
    font-size: 1.5rem;
}

/* Quick Highlights */
.quick-highlights {
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--feature-bg-start) 100%);
    padding: 60px 0;
    margin-bottom: 80px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.highlight-item {
  text-align: center;
  padding: 35px 25px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(21, 63, 137, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(21, 63, 137, 0.1), transparent);
  transition: left 0.5s ease;
}

.highlight-item:hover::before {
  left: 100%;
}

.highlight-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(21, 63, 137, 0.25),
    0 10px 20px rgba(21, 63, 137, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: #153F89;
  background: #ffffff;
}

.highlight-item:active {
  transform: translateY(-8px) scale(1.01);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Main Services Section */
.main-services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
/*
.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    border: 2px solid var(--color-primary-100);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
	padding:0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.3);
    border-color: var(--color-secondary-400);
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-title {
    padding: 20px;
    background: var(--card-bg);
}

.service-card-title h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 179, 0, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-overlay span {
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 700;
}
*/
.service-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: relative;
            height: 440px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #e8edf2;padding:0;
        }

        .service-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
            border-color: #1a5490;
        }

        .service-card-image {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: #f0f4f8;
        }

        .service-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-card-image::before {
            opacity: 1;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.08);
        }

        .service-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #1a5490;
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .service-card-content {
            padding: 24px;
            background: #ffffff;
        }

        .service-card-title h3 {
            font-size: 19px;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.4;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-card-title h3 {
            color: #1a5490;
        }

        .service-description {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .service-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: #94a3b8;
            padding-top: 12px;
            border-top: 1px solid #e8edf2;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-icon {
            width: 16px;
            height: 16px;
            color: #1a5490;
        }

        .service-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a5490;
            padding: 18px 24px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 3;
        }

        .service-card:hover .service-card-overlay {
            transform: translateY(0);
        }

        .service-card-overlay span {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .overlay-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .service-card:hover .overlay-arrow {
            background: rgba(255, 255, 255, 0.3);
            transform: translateX(4px);
        }

        .overlay-arrow::after {
            content: '→';
            font-size: 16px;
            font-weight: bold;
        }

        .service-card-link:focus {
            outline: none;
        }

        .service-card-link:focus .service-card {
            box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.3);
            border-color: #1a5490;
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }

            .service-card {
                height: 400px;
            }

            .service-card-image {
                height: 200px;
            }
        }
/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-explore,
.btn-whatsapp {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 10px 20px;
    transition: all 0.3s ease;
}

.btn-explore {
    background: linear-gradient(135deg, var(--color-secondary-400) 0%, var(--color-secondary-600) 100%);
    color: #1a202c;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--neutral-100);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.services-cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* About & Benefits Section */
.about-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--feature-bg-start) 100%);
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--card-border) 100%);
    border-radius: 25px;
    border: 2px solid var(--color-secondary-400);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Security Strategy */
/*.security-strategy {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--feature-bg-end) 100%);
    border-radius: 20px;
    border: 2px solid var(--card-border);
}*/

.security-strategy h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strategy-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary-400);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.strategy-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary-600);
    margin-bottom: 10px;
}

.strategy-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}



/* License Section */
.license-section {
    padding: 80px 0;
    background: var(--bg-gradient-start);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.license-card {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary-400);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25);
}

.license-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.license-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Homepage Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .strategy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .location-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-slide-content h1 {
        font-size: 2.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategy-grid,
    .stats-grid,
    .license-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-slider-section {
        height: 500px;
    }
    
    .hero-slide-content h1 {
        font-size: 2rem;
    }
    
    .hero-slide-content p {
        font-size: 1.1rem;
    }
    
    .highlights-grid,
    .services-grid,
    .strategy-grid,
    .stats-grid,
    .license-grid,
    .location-grid-home {
        grid-template-columns: 1fr;
    }
    
    .btn-explore,
    .btn-whatsapp {
        display: block;
        margin: 10px 0;
    }
}

/* === Secondary CTA Compact Section === */
.cta-compact-section {
    background: linear-gradient(135deg, var(--feature-bg-start) 0%, var(--card-border) 100%);
    padding: 60px 0;
    margin-top: 80px;
    border-top: 3px solid var(--color-secondary-400);
    border-bottom: 3px solid var(--color-secondary-400);
}

.cta-compact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-compact-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.cta-compact-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-compact-content a:not(.whatsapp-button) {
    color: var(--color-primary-600);
    text-decoration: none;
    font-weight: 600;
    
}

.cta-compact-content a:not(.whatsapp-button):hover {
     color: var(--color-primary-600) 
}

.cta-compact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-secondary-400) 0%, var(--color-secondary-600) 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.cta-compact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

@media (max-width: 768px) {
    .cta-compact-section {
        padding: 40px 0;
    }

    .cta-compact-content h2 {
        font-size: 1.5rem;
    }

    .cta-compact-content p {
        font-size: 0.95rem;
    }

}
/* === Breadcrumb - Optimized for Security Branding === */
/* === Breadcrumb - Updated with Logo Blue (#153F89) === */
.breadcrumb-area {
    /* Keep all original positioning properties */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    margin-bottom: 10px;
    
    /* ADD the solid blue background here if no image is used */
    background: var(--gradient-primary);
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Use a slightly darker/more opaque version of the blue for the overlay */
    background: linear-gradient(135deg, rgba(21, 63, 137, 0.95) 0%, rgba(17, 53, 114, 0.9) 100%);
    z-index: 1;
}

.breadcrumb-area .container {
    position: relative;
    z-index: 2;
}

/* --- Text Styling (Remains high-contrast White/Light Gray) --- */
.breadcrumb-content {
    text-align: center;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-100); /* White text for high contrast */
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-content p {
    font-size: 1.1rem;
    color: #E2E8F0; /* Light gray for softer body text */
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* --- Breadcrumb List Styling --- */
.breadcrumb-list {
    /* (Styling for flex and centering remains the same) */
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumb-item {
    font-size: 1rem;
    color: #E2E8F0;
}

.breadcrumb-item a {
    color: var(--neutral-100); /* White links */
    /* ... other link styles ... */
}

.breadcrumb-item a:hover {
    color: #FFB300; /* Keeping your yellow as the hover ACCENT */
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #718096;
}

.breadcrumb-item.active {
    color: #FFB300; /* Keeping your yellow for the active page indicator */
    font-weight: 600;
}

.breadcrumb-item.active span {
    color: #FFB300;
}

/* ... responsive styles remain the same ... */

/* Breadcrumb responsive */
@media (max-width: 768px) {
    .breadcrumb-area {
        padding: 60px 0;
    }

    .breadcrumb-title {
        font-size: 1.8rem;
    }

    .breadcrumb-content p {
        font-size: 1rem;
    }

    .breadcrumb-list {
        font-size: 0.9rem;
    }
}
/* === Utility Classes === */
.text-center {
    text-align: center;
}

.text-dark {
    color: var(--text-primary);
}

.bg-image {
    background-size: cover;
    background-position: center;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
/*==========================================================*/
/* 💚 2.20 WHATSAPP BUTTON & FLOAT ICON STYLES */
/*==========================================================*/

/* --- CSS Variables for Easy Customization --- */

/* --- 1. Standard Button (.whatsapp) Styles --- */
/* --- CSS Variables for WhatsApp Button --- */


/* --- Styled WhatsApp Button (.whatsapp) --- */
.whatsapp_button {
    /* Base Styles: Inherited from the provided .whatsapp block */
    background-color: var(--whatsapp-color-secondary-400) !important;
    color: #fff !important;
   
    outline: none;
    cursor: pointer;
    
    /* Layout & Aesthetics: Adapted from .cta-compact-button */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px; /* Generous padding */
    
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;

    /* Transitions: Combined smooth transitions from both */
    transition: 
        background-color 0.3s ease-in-out, 
        box-shadow 0.3s ease-in-out,
        transform 0.15s ease-out; /* Slightly faster transform for lift/press */
        
    /* Initial Shadow: Strong shadow from .cta-compact-button */
    
	
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
	
	
}

/* Hover State: Applying the lift and stronger shadow */
.whatsapp_button:hover {
    background-color: var(--whatsapp-color-hover) !important;
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 12px 35px var(--whatsapp-shadow-color-hover); /* Stronger shadow */
}

/* Focus State: Important for accessibility */
.whatsapp_button:focus {
    /* Keeps the visual feedback clear without the hover lift */
    transform: translateY(0); 
    box-shadow: 
        0 0 0 4px var(--whatsapp-shadow-color-hover), /* Focus ring */
        0 8px 25px var(--whatsapp-shadow-color-base); /* Retain base shadow */
    outline: none;
}

/* Active State: Slight press down effect */
.whatsapp_button:active {
    background-color: var(--whatsapp-color-active) !important;
    transform: translateY(1px); /* Press down */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Diminished shadow when pressed */
    transition: transform 0.05s ease-out; /* Quick transition for press feel */
}





/* WhatsApp Floating Icon */ #whatsapp-float-icon { position: fixed; width: 60px; height: 60px; bottom: 20px; right: 20px; background-color: var(--whatsapp-color-secondary-400) !important;color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); z-index: 1000; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; text-decoration: none; } 

/* Hover Effects */
 #whatsapp-float-icon:hover { transform: scale(1.1); box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3); } 

#whatsapp-float-icon i { transition: transform 0.3s ease; } #whatsapp-float-icon:hover i { transform: rotate(15deg); } 

/* Pulsating Effect */ #whatsapp-float-icon::after { content: ""; position: absolute; width: 80px; height: 80px; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: rgba(37, 211, 102, 0.4); border-radius: 50%; z-index: -1; animation: pulse 1.5s infinite ease-in-out; } @keyframes pulse { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; } 50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; } 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; } }.notification-badge{position:absolute;top:-5px;right:-5px;background-color:red;color:#fff;font-size:12px;font-weight:700;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;animation:1s infinite bounce}@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}


/* ========================= * Footer Styles * ========================= */ .footer {background: var(--gradient-primary); } .footer-widget { margin-top: 30px; } .footer-widget.space-left { position: relative; margin-left: 54px; } @media (max-width: 991px) { .footer-widget.space-left { margin-left: 0; } .footer-widget .content { margin-top: 15px; } } .footer-widget h4  { font-weight: bold; font-size: 1.2rem; line-height: 25px; color: #fff; } .footer-widget .content { margin-top: 30px; } .footer-widget .content p { color: #fff; font-size: 0.875rem; line-height: 25px; margin: 0; } .footer-widget .content ul.ft-menu { padding: 0; list-style: none; margin: 0; } .footer-widget .content ul.ft-menu li { margin-bottom: 15px; line-height: 16px; } .footer-widget .content ul.ft-menu li:last-child { margin-bottom: 0; } .footer-widget .content ul.ft-menu li a { color: #fff;; font-weight: 400; font-size: 0.875rem; transition: 0.4s ease-in-out; } .footer-widget .content ul.ft-menu li a:hover { color: var(--color-secondary-400); } .footer-widget .content .ft-address { margin-top: 14px; } .footer-widget .content .ft-address p { margin-bottom: 4px; } .footer-widget .content .ft-address p:last-child { margin-bottom: 0; } .footer-widget .content .input-box { position: relative; margin: 17px 0 15px; } .footer-widget .content .input-box input { width: 100%; height: 36px; border: 1px solid #e5e5e5; padding: 0 50px 0 10px; color: #222; } .footer-widget .content .input-box button { position: absolute; right: 0; top: 50%; transform: translateY(-50%); border: none; background: var(--color-secondary-400); height: 100%; color: var(--neutral-100); padding: 0 14px; transition: 0.4s ease-in-out; } .footer-widget .content .input-box button:hover { background: var(--color-secondary-400); color: var(--neutral-100); } .footer-widget .content .social-share { display: flex; gap: 10px; /* Adds spacing between icons */ } .footer-widget .content .social-share a { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; font-size: 20px; color: var(--b1); text-align: center; transition: 0.4s ease-in-out; } .footer-widget .content .social-share a:hover { background: 0.875rem; color: var(--neutral-100); } .footer-widget .content .input-box input::placeholder { color: var(--neutral-100); } .ht-footer { padding: 52px 0 83px; } 

.copyright {
    background-color: #1a1a1a; /* Dark charcoal for a professional look */
    color: #b0b0b0; /* Softer white for easier reading */
    padding: 1rem 0; /* approx 16px - better breathing room */
    font-size: 0.875rem; /* Standard copyright size (14px) */
    font-family: inherit; /* Inherit site font */
    border-top: 1px solid #333; /* Subtle separation line */
}
.copyright .container{max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;}
.copyright p {
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

 
 
 /* ========================== Social Buttons ========================== */ :root { --facebook-color: #1877F2; --linkedin-color: #0A66C2; --youtube-color: #FF0000; --instagram-color: #E4405F; --social-icon-size: 40px; --social-radius: 3px; --social-transition: 0.3s ease; } .social-icon-list { display: flex; gap: 1rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; } .social-icon-list__item a { display: inline-flex; justify-content: center; align-items: center; width: var(--social-icon-size); height: var(--social-icon-size); border-radius: var(--social-radius); color: #fff; transition: background-color var(--social-transition), box-shadow var(--social-transition); background-color: transparent; /* Default to transparent */ } .social-icon-list__item a:hover { box-shadow: rgba(37, 49, 56, 0.08) 0px 12px 18px -4px, rgba(37, 49, 56, 0.03) 0px 4px 6px -2px; } .social-icon-list__item a:focus { outline: 2px solid #ffcc00; outline-offset: 4px; } .social-icon-list__item a i { font-size: 1.5rem; /* Use rem for responsive sizing */ } /* Brand Color Specific Classes */ .social-icon-list__item a.fb { background-color: var(--facebook-color); } .social-icon-list__item a.linkedin { background-color: var(--linkedin-color); } .social-icon-list__item a.yt { background-color: var(--youtube-color); } .social-icon-list__item a.instagram { background-color: var(--instagram-color); } .social-icon-list__item a.slideshare { background-color: var(--linkedin-color); } /* Use LinkedIn color */ /* Theme-Specific Overrides */ .theme-social--brand-color .social-icon-list__item a { border: none; }
 
 
 /* Hero Services Section */
        .hero-services {
            background: var(--gradient-hero);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }
		
		.service-highlight {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 40px 25px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-highlight:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(21,63,137,0.15);
            background: #fff;
        }

        .service-highlight i {
            color: var(--color-secondary);
            margin-bottom: 20px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .service-highlight:hover i {
            transform: scale(1.1) rotate(5deg);
        }

        .service-highlight h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-primary-600);
            line-height: 1.4;
            margin: 0;
        }

        /* Benefits Section */
        .section-agency-benefit {
            
            background: #fff;
        }

        .section-title h1 {
            font-size: 42px;
            font-weight: 800;
            color: var(--color-primary-600);
            line-height: 1.3;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
        }

        @media (max-width: 768px) {
            .section-title h1 {
                font-size: 32px;
            }
        }
  .main-title {
            text-align: center;
            background:#f8f9fa;
            animation: fadeInUp 1s ease-out both;
        }

        .main-title h1 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-400) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 35px 0 50px;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(21,63,137,0.08) 0%, rgba(21,63,137,0.04) 100%);
            border: 2px solid var(--color-primary-200);
            color: var(--color-primary-600);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            background: var(--color-primary-600);
            color: white;
            border-color: var(--color-primary-600);
            transform: translateY(-2px);
        }

        .lead {
            font-size: 20px;
            line-height: 1.8;
            color: #555;
            max-width: 900px;
            margin: 0 auto 60px;
        }
.lead-text {
            max-width: 900px;
            margin: 40px auto;
            text-align: center;
            font-size: 18px;
            line-height: 1.8;
            color: #4a5568;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        .text-warning {
            color: var(--color-secondary) !important;
        }

        .fw-bold {
            font-weight: 700;
        }

        /* Security Strategy */
       .strategy-section {
            
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .strategy-section h2 {
            text-align: center;
            font-size: clamp(24px, 4vw, 36px);
            margin-bottom: 60px;
            color: var(--color-primary-600);
        }

        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .strategy-card {
            background: #ffffff;
            border: 2px solid rgba(var(--color-primary-rgb), 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .strategy-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        .strategy-card:hover::before {
            left: 100%;
        }

        .strategy-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-secondary);
            box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.15);
        }

        .strategy-icon {
            font-size: 60px;
            margin-bottom: 20px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .strategy-card:nth-child(1) .strategy-icon { animation-delay: 0s; }
        .strategy-card:nth-child(2) .strategy-icon { animation-delay: 0.3s; }
        .strategy-card:nth-child(3) .strategy-icon { animation-delay: 0.6s; }
        .strategy-card:nth-child(4) .strategy-icon { animation-delay: 0.9s; }

        .strategy-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--color-primary-600);
        }

        .strategy-desc {
            color: #5a6c7d;
            font-size: 14px;
        }

        .locations-section {
           
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .locations-section h3 {
            text-align: center;
            font-size: clamp(22px, 3.5vw, 32px);
            margin-bottom: 50px;
            color: var(--color-primary-600);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .location-card {
            background: #ffffff;
            border: 2px solid rgba(var(--color-primary-rgb), 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .location-card:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.03) 0%, rgba(var(--color-secondary-rgb), 0.03) 100%);
            box-shadow: 0 15px 40px rgba(var(--color-primary-rgb), 0.15);
            border-color: var(--color-secondary);
        }

        .location-card h5 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .location-card a {
            color: var(--color-primary-600);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 600;
        }

        .location-card a:hover {
            color: var(--color-secondary-600);
        }

        .location-card small {
            color: #5a6c7d;
            font-size: 14px;
        }

        .stats-section {
            
         background: var(--gradient-section);
/* #1F5CC0 → #153F89 */
/* #9DBFF0 → #153F89 */
/* #1F5CC0 → #153F89 */
/* #3A78D1 → #1F5CC0 */
/* #9DBFF0 → #3A78D1 */
            animation: fadeInUp 1s ease-out 0.8s both;
            color: #ffffff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-icon {
            font-size: 48px;
            color: var(--color-secondary);
            margin-bottom: 20px;
            display: inline-block;
            animation: pulse 2s ease-in-out infinite;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .closing-text {
            text-align: center;
            max-width: 800px;
            margin: 60px auto;
            font-size: 18px;
            line-height: 1.8;
            color: #4a5568;
        }

        @media (max-width: 768px) {
            .btn {
                display: block;
                margin: 10px 20px;
            }

            .strategy-grid,
            .locations-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }