* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px; /* For fixed header */
}

/* Header Styles */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003366;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 5px solid  red;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #003366;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #003366;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #003366;
}

/* Footer Styles */
footer {
    background: #003366;
    color: #ffffff;
    padding: 4rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4dacff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Scroll Styling */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 1rem;
    }

    .mobile-menu {
        display: block;
    }

    body {
        padding-top: 60px;
    }

    .logo-img {
        height: 40px;
        width: auto;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .logo-img{
        height: 40px;
        width: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 1000px;
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg-pattern.png') center/cover;
    opacity: 0.1;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: #003366;
    border: 2px solid #003366;
}

.cta-button:hover {
    background: transparent;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: #003366(255,102,0,0.4);
}

/* Hero Section Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: #003366;
    border: 2px solid #003366;
}

/* .secondary-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
} */

.secondary-button:hover {
    background: transparent;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: #003366(255,102,0,0.4);
}

.secondary-button:hover i {
    transform: rotate(15deg);
}

/* Pulse animation for emergency number */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 #003366; }
    70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.emergency-call .secondary-button {
    animation: pulse 2s infinite;
}

/* Mobile specific button styles */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .secondary-button {
        background: #003366;
    }
}

@media (max-width: 480px) {
    .secondary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
.hero-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 50%;
    max-width: 700px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}


/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 6rem 2rem;
    background: #f9fbfe;
    position: relative;
}
  
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
  
.section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
    position: relative;
    display: inline-bloc
}
  
.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #003366;
}
  
.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}
.usp-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
  
.usp-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
  
.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
  
.usp-icon {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1.5rem;
}
  
.usp-card h3 {
    color: #003366;
    margin-bottom: 1rem;
}
  
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
  
.stat-item {
    text-align: center;
}
  
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.5rem;
}
  
/* Add to style.css */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.5rem;
    position: relative;
    height: 60px; /* Fixed height to prevent layout shift */
    overflow: hidden;
}

.stat-number span {
    display: block;
    position: absolute;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    animation: rollIn 1s ease-out forwards;
}

@keyframes rollIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Delay animations for each item */
.stat-item:nth-child(1) .stat-number span {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) .stat-number span {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) .stat-number span {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) .stat-number span {
    animation-delay: 0.8s;
}
/* ===== Core Services ===== */
.services-section {
    padding: 6rem 2rem;
    background: white;
}
  
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
  
.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
  
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
  
/* .service-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
  
.service-content {
    padding: 2rem;
}
  
.service-content h3 {
    color: #003366;
    margin-bottom: 1rem;
}
  
.service-link {
    color: #003366;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}
  
.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
  
.service-link:hover i {
    transform: translateX(5px);
}
  
/* ===== Emergency Support ===== */
.emergency-section {
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
  
.emergency-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('emergency-pattern.png');
    opacity: 0.05;
}
  
.emergency-badge {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}


.emergency-cta {
    display: inline-flex;
    align-items: center;
    background: #003366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
    
}
  
.emergency-cta:hover {
    transform: scale(1.05);
    box-shadow: #003366;
}
  
/* ===== Testimonials ===== */
.testimonials-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}
  
.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
  
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 1rem;
}
  
.client-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
  
.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
  
/* ===== Technology Partners ===== */
.partners-section {
    padding: 4rem 2rem;
    text-align: center;
}
  
.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}
  
.partner-logo {
    height: 300px;
    width: 300px;
    transition: all 0.3s ease;
}
.widget-image-caption .wp-caption-text {
    margin: .8075em 0;
}
.partner-logo:hover {
    transform: scale(1.1);
}
  

  
/* ===== Contact CTA ===== */
.contact-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%);
    color: white;
    text-align: center;
}
  
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}
  
  .contact-info {
    text-align: left;
}
  
.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
  
.contact-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #003366;
}
  
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
}
  
.submit-btn {
    background: #003366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
  
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
  
/* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
 }
  
  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(30px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 2rem;
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .emergency-cta {
      padding: 0.8rem 1.5rem;
    }
  }

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .hero-image {
        width: 60%;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 8rem 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* ===== About Page Specific Styles ===== */

/* Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%), url('team-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
  }
  
  .about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
  
  .about-hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 2rem;
  }
  
  .breadcrumbs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .breadcrumbs a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  
  .breadcrumbs a:hover {
    opacity: 1;
  }
  
  .breadcrumbs .separator {
    opacity: 0.6;
  }
  
  
  
  /* Mission & Values */
  .values-section {
    padding: 6rem 2rem;
    background: #f8fafc;
  }
  
  .value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0;
  }
  
  .value-card.visible {
    transform: scale(1);
    opacity: 1;
  }
  
  .value-card i {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .value-card:hover i {
    transform: rotate(15deg) scale(1.2);
  }
  
  /* Team Section */
  .team-section {
    padding: 6rem 2rem;
    background: white;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
  }
  
  .team-member.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f4f8;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .team-member:hover img {
    border-color: #003366;
    transform: scale(1.05);
  }
  
  .team-member h3 {
    color: #003366;
    margin-bottom: 0.5rem;
  }
  
  .team-member p {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Differentiation Section */
  .differentiation-section {
    padding: 6rem 2rem;
    background: #f8fafc;
  }
  
  .differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .differentiator {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .differentiator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #003366;
    transition: all 0.3s ease;
  }
  
  .differentiator:hover::before {
    width: 100%;
    opacity: 0.1;
  }
  
  .differentiator .number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .differentiator h3 {
    color: #003366;
    margin-bottom: 1rem;
    position: relative;
  }
  
  /* Technology Stack */
  .tech-partners {
    padding: 6rem 2rem;
    background: white;
  }
  
  .partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .partner-logos img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .about-hero h1 {
      font-size: 2.8rem;
    }
    
    .timeline::after {
      left: 31px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
      left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .about-hero {
      height: auto;
      padding: 8rem 2rem;
      text-align: center;
    }
    
    .about-hero p {
      margin-left: auto;
      margin-right: auto;
    }
    
    .value-cards, .team-grid, .differentiators {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .about-hero h1 {
      font-size: 2.2rem;
    }
    
    .about-hero p {
      font-size: 1.2rem;
    }
  }

  /* Blog card styles */
