/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #003366; /* Govt Blue */
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}
.logo-section img {
    height: 55px;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: #FFD700;
}

/* Register Button */
.btn-register {
    background: #FFD700;
    color: #003366;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
    min-width: 120px;
    text-align: center;
}
.btn-register:hover {
    background: #e6c200;
}

/* Hamburger for Mobile */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #002a55;
    padding: 1rem 0;
}
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
    margin: 0;
}
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.btn-register-mobile {
    background: #FFD700;
    color: #003366;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    margin: 10px auto 0;
}

/* ===== HERO SECTION (unchanged) ===== */
/* ===== HERO VIDEO SECTION - FULLSCREEN, NO EXTRA SPACE ===== */
.hero-video {
    position: relative;
    height: 100vh;          /* Exactly full viewport height */
    width: 100%;            /* Full width of container */
    max-width: 100vw;       /* Prevent overflow */
    overflow: hidden;       /* Hide any overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;      /* Ensures full coverage without distortion */
}

/* Semi-transparent dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.65); /* Govt blue tint */
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    max-width: 800px;
}
.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
}
.hero-content h1 span {
    color: #FFD700;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary {
    background: #FFD700;
    color: #003366;
}
.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-video {
        height: 90vh; /* Slightly less on mobile for better UX */
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}
/* ===== FOOTER ===== */
.footer {
    background: #002244;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}
.footer p {
    margin: 0;
    color: #ccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    .logo-section {
        order: 1;
    }
    .nav-menu {
        display: none;
    }
    .btn-register {
        display: none;
    }
    .hamburger {
        display: block;
        order: 2;
    }
    .mobile-menu.active {
        display: block;
        order: 3;
        width: 100%;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== SERVICES SECTION - UNIQUE CLASSES (ih- prefix) ===== */
/*.ih-services-section {*/
/*    padding: 5rem 0;*/
/*    background: #f8f9fa;*/
/*}*/

/*.ih-container {*/
/*    width: 90%;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*}*/

/*.ih-section-header {*/
/*    text-align: center;*/
/*    margin-bottom: 3rem;*/
/*}*/
/*.ih-section-header h2 {*/
/*    font-size: 2.2rem;*/
/*    color: #003366;*/
/*    margin-bottom: 1rem;*/
/*    font-weight: 600;*/
/*}*/
/*.ih-section-header p {*/
/*    font-size: 1.2rem;*/
/*    color: #555;*/
/*    max-width: 700px;*/
/*    margin: 0 auto;*/
/*    line-height: 1.6;*/
/*}*/

/*.ih-services-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*    gap: 30px;*/
/*}*/

/*.ih-service-card {*/
/*    background: white;*/
/*    border-radius: 12px;*/
/*    padding: 30px 20px;*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);*/
/*    transition: transform 0.3s, box-shadow 0.3s;*/
/*}*/
/*.ih-service-card:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);*/
/*}*/
/*.ih-service-icon {*/
/*    font-size: 2.5rem;*/
/*    margin-bottom: 15px;*/
/*    color: #003366;*/
/*}*/
/*.ih-service-card h3 {*/
/*    font-size: 1.4rem;*/
/*    margin-bottom: 12px;*/
/*    color: #003366;*/
/*}*/
/*.ih-service-card p {*/
/*    color: #555;*/
/*    font-size: 1rem;*/
/*    line-height: 1.6;*/
/*}*/

/* Responsive */
/*@media (max-width: 768px) {*/
/*    .ih-section-header h2 {*/
/*        font-size: 1.8rem;*/
/*    }*/
/*    .ih-section-header p {*/
/*        font-size: 1.1rem;*/
/*    }*/
/*    .ih-container {*/
/*        width: 95%;*/
/*    }*/
/*}*/









/* ===== CAREER SECTION WITH IMAGE CARDS ===== */
.ih-career-section {
    padding: 5rem 0;
    background: #f0f4f8;
        padding:10px;

}

.ih-career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
    padding:30px;
}

.ih-career-card {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ih-career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.2);
}

.ih-career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7); /* Dark blue overlay */
    z-index: 1;
}

.ih-career-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 25px 20px;
    width: 100%;
}
.ih-career-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.ih-career-content p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
}

.ih-career-cta {
    text-align: center;
    margin-top: 2rem;
}
.ih-career-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 1.5rem;
}

.ih-btn-primary {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.ih-btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ih-career-card {
        height: 250px;
    }
    .ih-career-content h3 {
        font-size: 1.3rem;
    }
    .ih-career-content p {
        font-size: 0.95rem;
    }
    .ih-career-cta p {
        font-size: 1.3rem;
    }
}


.ih-companies-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.ih-companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.ih-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ih-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ih-section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Marquee Container */
.ih-companies-marquee {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Gradient Masks for Smooth Edge Effect */
.ih-companies-marquee::before,
.ih-companies-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.ih-companies-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.ih-companies-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* Track with Infinite Scroll */
.ih-companies-track {
    display: flex;
    gap: 2rem;
    animation: scroll-infinite 30s linear infinite;
    width: fit-content;
}

/* Pause on Hover */
.ih-companies-marquee:hover .ih-companies-track {
    animation-play-state: paused;
}

/* Logo Card */
.ih-logo-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.ih-logo-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.ih-logo-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ih-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Smooth Infinite Animation */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ih-section-header h2 {
        font-size: 2rem;
    }
    
    .ih-section-header p {
        font-size: 1rem;
    }
    
    .ih-logo-card {
        width: 140px;
        height: 80px;
        padding: 1rem;
    }
    
    .ih-companies-track {
        gap: 1.5rem;
        animation-duration: 20s;
    }
    
    .ih-companies-marquee::before,
    .ih-companies-marquee::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .ih-companies-section {
        padding: 3rem 0;
    }
    
    .ih-logo-card {
        width: 120px;
        height: 70px;
    }
    
    .ih-companies-track {
        gap: 1rem;
    }
}

.ih-trusted-by-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #003366 0%, #004080 50%, #003366 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding:40px;
}

/* Animated Background Pattern */
.ih-trusted-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Section Header */
.ih-stats-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ih-stats-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.ih-stats-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Stats Grid */
.ih-trusted-by-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Stat Card */
.ih-stat-card {
    position: relative;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Glow Effect */
.ih-stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    opacity: 0;
}

.ih-stat-card:hover .ih-stat-glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.ih-stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #FFD700;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

/* Government Card Special Style */
.ih-govt-card {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
}

.ih-govt-card:hover {
    background: rgba(255, 215, 0, 0.18);
    border-color: #FFD700;
}

/* Icon Container */
.ih-trusted-by-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
}

.ih-stat-card:hover .ih-trusted-by-icon {
    animation: bounce 0.6s ease;
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: scale(1.2) translateY(0); }
    50% { transform: scale(1.2) translateY(-15px); }
}

/* Content */
.ih-trusted-by-content {
    position: relative;
}

.ih-trusted-by-content h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #FFD700;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.ih-plus, .ih-percent {
    font-size: 2rem;
    color: #FFA500;
    font-weight: 700;
    margin-left: 5px;
}

.ih-trusted-by-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin: 0.8rem 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Badge */
.ih-stat-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ih-verified {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(56, 142, 60, 0.3));
    border-color: rgba(76, 175, 80, 0.5);
    color: #90EE90;
}

/* Decorative Floating Circles */
.ih-stats-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.ih-float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    animation: float-circle 20s ease-in-out infinite;
}

.ih-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.ih-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
    animation-delay: 5s;
}

.ih-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: -125px;
    animation-delay: 10s;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ih-counter {
    animation: countUp 1s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
    .ih-trusted-by-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ih-trusted-by-section {
        padding: 4rem 0;
    }
    
    .ih-stats-header h2 {
        font-size: 2.2rem;
    }
    
    .ih-stats-header p {
        font-size: 1rem;
    }
    
    .ih-trusted-by-content h3 {
        font-size: 2.5rem;
    }
    
    .ih-trusted-by-content p {
        font-size: 1rem;
    }
    
    .ih-trusted-by-icon {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .ih-trusted-by-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ih-stat-card {
        padding: 2rem 1rem;
    }
}

/* ===== CLIENT REVIEWS SECTION ===== */
.ih-review-section {
    padding: 5rem 0;
    background: #f8f9fa;
        padding:10px;

}

.ih-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.ih-review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}
.ih-review-card::before {
    /* content: """; */
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #e9ecef;
    font-family: Georgia, serif;
    line-height: 1;
}

.ih-review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.ih-review-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ih-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ih-review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}
.ih-review-author h4 {
    margin: 0;
    color: #003366;
    font-size: 1.1rem;
}
.ih-review-author p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ih-review-card::before {
        font-size: 3rem;
        top: 5px;
        left: 15px;
    }
    .ih-review-author {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FAQ SECTION ===== */
.ih-faq-section {
    padding: 5rem 0;
    background: white;
}

.ih-faq-list {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ih-faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.ih-faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s;
}
.ih-faq-question:hover {
    color: #FFD700;
}

.ih-faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.ih-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}
.ih-faq-answer.show {
    max-height: 200px;
    padding: 0 0 20px 0;
}
.ih-faq-answer p {
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.ih-footer {
    background: #002244; /* Dark Govt Blue */
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
        padding:50px;

}

.ih-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.ih-footer-brand img {
    height: 81px;
    margin-bottom: 15px;
}
.ih-footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.ih-footer-links h4,
.ih-footer-contact h4,
.ih-footer-legal h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-footer-links ul {
    list-style: none;
    padding: 0;
}
.ih-footer-links li {
    margin-bottom: 10px;
}
.ih-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.ih-footer-links a:hover {
    color: #FFD700;
}

.ih-footer-contact p,
.ih-footer-legal p {
    margin: 8px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.ih-footer-social {
    margin-top: 10px;
}
.ih-footer-social p {
    font-size: 0.9rem;
}

/* Footer Bottom */
.ih-footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ih-footer-grid {
        gap: 25px;
    }
    .ih-footer-brand p,
    .ih-footer-contact p,
    .ih-footer-legal p {
        font-size: 0.9rem;
    }
}


/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section */
.ih-about-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('../images/about/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.ih-about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.ih-about-content,
.ih-about-vision {
    padding: 5rem 0;
    background: white;
        padding:40px;

}

.ih-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.ih-about-grid.reverse {
    grid-template-columns: 1fr 1fr;
}
.ih-about-text h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.ih-about-text h3 {
    color: #003366;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}
.ih-about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.ih-about-list {
    padding-left: 20px;
    margin: 1.5rem 0;
}
.ih-about-list li {
    margin-bottom: 10px;
    color: #555;
}

.ih-about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.ih-about-cta {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}
.ih-about-cta h2 {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 1rem;
}
.ih-about-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Reuse Button */
.ih-btn-primary {
    display: inline-block;
    background: #FFD700;
    width:31%;
    color: #003366;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.ih-btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ih-about-hero h1 {
        font-size: 2.2rem;
    }
    .ih-about-hero p {
        font-size: 1.1rem;
    }
    .ih-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ih-about-grid.reverse {
        grid-template-columns: 1fr;
    }
    .ih-about-image img {
        margin: 0 auto;
        max-width: 400px;
    }
    .ih-about-list {
        text-align: left;
    }
}

/* ===== OUR JOURNEY SECTION ===== */
.ih-journey-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.ih-journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.ih-journey-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.ih-journey-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}
.ih-journey-item.left {
    left: 0;
}
.ih-journey-item.right {
    left: 50%;
}

.ih-journey-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FF7A00;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.ih-journey-item.left .ih-journey-dot {
    right: -8px;
}
.ih-journey-item.right .ih-journey-dot {
    left: -8px;
}

.ih-journey-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}
.ih-journey-content:hover {
    transform: translateY(-5px);
}

.ih-journey-year {
    color: #FF7A00;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.ih-journey-content h3 {
    color: #003366;
    margin: 10px 0 10px;
    font-size: 1.3rem;
}
.ih-journey-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ih-journey-timeline::before {
        left: 31px;
    }
    .ih-journey-item {
        width: 100%;
        padding: 20px 30px;
        left: 0;
        text-align: center;
    }
    .ih-journey-item.left,
    .ih-journey-item.right {
        left: 0;
    }
    .ih-journey-dot {
        left: 23px;
        right: auto;
    }
    .ih-journey-content {
        margin-left: 50px;
        margin-right: 0;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Hero Section */
.ih-services-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}
.ih-services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.ih-services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid Section */
.ih-services-grid-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.ih-services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding:40px;
}

/* Service Card */
.ih-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}
.ih-service-card:hover {
    transform: translateY(-8px);
}

.ih-service-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ih-service-card-content {
    padding: 25px;
}

.ih-service-card-icon {
    font-size: 1.5rem;
    color: #FFD700;
    background: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.ih-service-card-content h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.ih-service-card-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ih-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.ih-service-features li {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-service-btn {
    display: inline-block;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}
.ih-service-btn:hover {
    background: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ih-services-hero h1 {
        font-size: 2rem;
    }
    .ih-services-hero p {
        font-size: 1.1rem;
    }
    .ih-service-card-image img {
        height: 180px;
    }
    .ih-service-card-content h3 {
        font-size: 1.3rem;
    }
    .ih-service-btn {
        width: 100%;
        text-align: center;
    }
}
/* ===== SERVICES PAGE STYLES ===== */

/* Hero Section */
.ih-services-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}
.ih-services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.ih-services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid Section */
.ih-services-grid-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.ih-services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service Card */
.ih-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}
.ih-service-card:hover {
    transform: translateY(-8px);
}

.ih-service-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ih-service-card-content {
    padding: 25px;
}

.ih-service-card-icon {
    font-size: 1.5rem;
    color: #FFD700;
    background: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.ih-service-card-content h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.ih-service-card-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.ih-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.ih-service-features li {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-service-btn {
    display: inline-block;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}
.ih-service-btn:hover {
    background: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ih-services-hero h1 {
        font-size: 2rem;
    }
    .ih-services-hero p {
        font-size: 1.1rem;
    }
    .ih-service-card-image img {
        height: 180px;
    }
    .ih-service-card-content h3 {
        font-size: 1.3rem;
    }
    .ih-service-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== CATEGORY TITLE ===== */
.ih-category-title {
    text-align: center;
    color: #003366;
    font-size: 2rem;
    margin: 3rem 0 2rem;
    position: relative;
}
.ih-category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FFD700;
    margin: 10px auto;
    border-radius: 2px;
}


/* ===== CONTACT PAGE STYLES ===== */

/* Hero Section */
.ih-contact-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('../images/contact/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.ih-contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.ih-contact-section {
    padding: 5rem 0;
    background: white;
    padding:40px;
}

.ih-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ih-contact-info h2,
.ih-contact-form h2 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.ih-contact-info p {
    color: #555;
    margin-bottom: 2rem;
}

.ih-contact-item {
    margin-bottom: 1.2rem;
}
.ih-contact-item strong {
    color: #003366;
    display: block;
    margin-bottom: 5px;
}
.ih-contact-item p {
    margin: 0;
    color: #555;
}

.ih-contact-map {
    margin-top: 2rem;
}

/* Form Styles */
.ih-contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ih-form-group {
    margin-bottom: 20px;
}
.ih-form-group input,
.ih-form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}
.ih-form-group input:focus,
.ih-form-group textarea:focus {
    outline: none;
    border-color: #003366;
}
.ih-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.ih-btn-primary {
    width: 100%;
    background: #FFD700;
        width:31%;

    color: #003366;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.ih-btn-primary:hover {
    background: #e6c200;
}

/* Responsive */
@media (max-width: 768px) {
    .ih-contact-hero h1 {
        font-size: 2.2rem;
    }
    .ih-contact-grid {
        grid-template-columns: 1fr;
    }
    .ih-contact-form {
        padding: 20px;
    }
}



/* ===== DATA SCIENCE PAGE STYLES ===== */

/* Hero Section with Image Background */
.ih-ds-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/data-science-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
}
.ih-ds-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-ds-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Large Register Button in Hero */
.ih-btn-primary-large {
    display: inline-block;
        width:31%;

    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.ih-btn-primary-large:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* What You'll Learn */
.ih-ds-section {
    padding: 4rem 0;
    background: white;
}
.ih-ds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-ds-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-ds-card:hover {
    transform: translateY(-5px);
}
.ih-ds-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-ds-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-ds-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-ds-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Services We Provide */
.ih-ds-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-ds-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-ds-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-ds-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-ds-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-ds-feature p {
    color: #555;
    font-size: 0.95rem;
}

/* Details Grid */
.ih-ds-details {
    padding: 4rem 0;
    background: white;
}
.ih-ds-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-ds-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-ds-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-ds-detail-card p {
    color: #003366;
    font-weight: 600;
}

/* CTA */
.ih-ds-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-ds-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-ds-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse Button */
.ih-btn-primary {
    display: inline-block;
        width:31%;

    background: #FFD700;
    color: #003366;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.ih-btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ih-ds-hero h1 {
        font-size: 2.2rem;
    }
    .ih-ds-hero p {
        font-size: 1.1rem;
    }
    .ih-btn-primary-large {
        font-size: 1.1rem;
        padding: 14px 30px;
    }
    .ih-ds-card img {
        height: 120px;
    }
}

/* ===== POPUP STYLES ===== */
.ih-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
.ih-popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.ih-popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.ih-popup-content h2 {
    color: #003366;
    margin-bottom: 15px;
}
.ih-popup-list {
    padding-left: 20px;
    margin: 15px 0;
    color: #555;
}
.ih-popup-list li {
    margin-bottom: 10px;
}
.ih-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}
.ih-btn-secondary {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.ih-btn-secondary:hover {
    background: #5a6268;
}

/* ===== BLINKING & ANIMATED REGISTER BUTTON ===== */
.ih-btn-primary-large {
        width:31%;

    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}

@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}


/* ===== DATA ANALYTICS PAGE STYLES ===== */

/* Hero */
.ih-da-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/data-analytics-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
}
.ih-da-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-da-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* What You'll Learn */
.ih-da-section {
    padding: 4rem 0;
    background: white;
    padding:10px;
}
.ih-da-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-da-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-da-card:hover {
    transform: translateY(-5px);
}
.ih-da-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-da-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-da-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-da-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Services */
.ih-da-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-da-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-da-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-da-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-da-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-da-feature p {
    color: #555;
    font-size: 0.95rem;
}

/* Details */
.ih-da-details {
    padding: 4rem 0;
    background: white;
}
.ih-da-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-da-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-da-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-da-detail-card p {
    color: #003366;
    font-weight: 600;
}

/* CTA */
.ih-da-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-da-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-da-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse Large Button (with blink) */
.ih-btn-primary-large {
    display: inline-block;
        width:31%;

    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== CYBER SECURITY PAGE STYLES ===== */

.ih-cs-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/cyber-security-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-cs-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-cs-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-cs-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-cs-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-cs-card:hover {
    transform: translateY(-5px);
}
.ih-cs-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-cs-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-cs-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-cs-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-cs-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-cs-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-cs-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-cs-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-cs-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-cs-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-cs-details {
    padding: 4rem 0;
    background: white;
}
.ih-cs-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-cs-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-cs-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-cs-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-cs-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-cs-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-cs-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== WEB DEVELOPMENT PAGE STYLES ===== */

.ih-wd-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/web-development-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-wd-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-wd-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-wd-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-wd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-wd-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-wd-card:hover {
    transform: translateY(-5px);
}
.ih-wd-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-wd-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-wd-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-wd-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-wd-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-wd-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-wd-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-wd-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-wd-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-wd-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-wd-details {
    padding: 4rem 0;
    background: white;
}
.ih-wd-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-wd-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-wd-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-wd-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-wd-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-wd-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-wd-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== CLOUD COMPUTING PAGE STYLES ===== */

.ih-cc-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/cloud-computing-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-cc-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-cc-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-cc-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-cc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-cc-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-cc-card:hover {
    transform: translateY(-5px);
}
.ih-cc-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-cc-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-cc-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-cc-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-cc-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-cc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-cc-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-cc-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-cc-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-cc-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-cc-details {
    padding: 4rem 0;
    background: white;
}
.ih-cc-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-cc-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-cc-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-cc-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-cc-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-cc-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-cc-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== IOT PAGE STYLES ===== */

.ih-iot-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/iot-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-iot-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-iot-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-iot-section {
    
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-iot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-iot-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-iot-card:hover {
    transform: translateY(-5px);
}
.ih-iot-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-iot-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-iot-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-iot-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-iot-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-iot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-iot-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-iot-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-iot-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-iot-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-iot-details {
    padding: 4rem 0;
    background: white;
}
.ih-iot-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-iot-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-iot-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-iot-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-iot-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-iot-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-iot-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== GRAPHIC DESIGN PAGE STYLES ===== */

.ih-gd-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/graphic-design-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-gd-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-gd-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-gd-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-gd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-gd-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-gd-card:hover {
    transform: translateY(-5px);
}
.ih-gd-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-gd-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-gd-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-gd-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-gd-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-gd-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-gd-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-gd-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-gd-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-gd-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-gd-details {
    padding: 4rem 0;
    background: white;
}
.ih-gd-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-gd-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-gd-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-gd-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-gd-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-gd-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-gd-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}


/* ===== GRAPHIC DESIGN PAGE STYLES ===== */

.ih-gd-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/graphic-design-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-gd-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-gd-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-gd-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-gd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-gd-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-gd-card:hover {
    transform: translateY(-5px);
}
.ih-gd-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-gd-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-gd-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-gd-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-gd-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-gd-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-gd-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-gd-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-gd-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-gd-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-gd-details {
    padding: 4rem 0;
    background: white;
}
.ih-gd-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-gd-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-gd-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-gd-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-gd-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-gd-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-gd-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}


/* ===== HR MANAGEMENT PAGE STYLES ===== */

.ih-hr-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/hr-management-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-hr-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-hr-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-hr-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-hr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-hr-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-hr-card:hover {
    transform: translateY(-5px);
}
.ih-hr-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-hr-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-hr-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-hr-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-hr-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-hr-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-hr-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-hr-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-hr-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-hr-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-hr-details {
    padding: 4rem 0;
    background: white;
}
.ih-hr-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-hr-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-hr-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-hr-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-hr-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-hr-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-hr-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== FINANCE & BANKING PAGE STYLES ===== */

.ih-fb-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/finance-banking-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-fb-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-fb-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-fb-section {
    padding: 4rem 0;
    background: white;
        padding:20px;

}
.ih-fb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-fb-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-fb-card:hover {
    transform: translateY(-5px);
}
.ih-fb-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-fb-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-fb-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-fb-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-fb-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-fb-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-fb-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-fb-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-fb-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-fb-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-fb-details {
    padding: 4rem 0;
    background: white;
}
.ih-fb-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-fb-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-fb-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-fb-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-fb-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-fb-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-fb-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}
/* ===== SALES & MARKETING PAGE STYLES ===== */

.ih-sm-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/sales-marketing-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-sm-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-sm-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-sm-section {
    padding: 4rem 0;
    background: white;
    padding:20px;
}
.ih-sm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-sm-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-sm-card:hover {
    transform: translateY(-5px);
}
.ih-sm-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-sm-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-sm-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-sm-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-sm-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-sm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-sm-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-sm-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-sm-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-sm-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-sm-details {
    padding: 4rem 0;
    background: white;
}
.ih-sm-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-sm-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-sm-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-sm-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-sm-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-sm-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-sm-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== VIDEO EDITING PAGE STYLES ===== */

.ih-ve-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/video-editing-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-ve-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-ve-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-ve-section {
    padding: 4rem 0;
    background: white;
}
.ih-ve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-ve-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-ve-card:hover {
    transform: translateY(-5px);
}
.ih-ve-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-ve-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-ve-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-ve-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-ve-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-ve-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-ve-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-ve-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-ve-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-ve-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-ve-details {
    padding: 4rem 0;
    background: white;
}
.ih-ve-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-ve-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-ve-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-ve-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-ve-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-ve-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-ve-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}

/* ===== CONTENT WRITING PAGE STYLES ===== */

.ih-cw-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)), url('../images/services/content-writing-hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.ih-cw-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ih-cw-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.ih-cw-section {
    padding: 4rem 0;
    background: white;
}
.ih-cw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.ih-cw-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #003366;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.ih-cw-card:hover {
    transform: translateY(-5px);
}
.ih-cw-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ih-cw-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.ih-cw-card ul {
    padding-left: 20px;
    color: #555;
}
.ih-cw-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ih-cw-services {
    padding: 4rem 0;
    background: #f8f9fa;
}
.ih-cw-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ih-cw-feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ih-cw-icon {
    font-size: 1.8rem;
    color: #003366;
    flex-shrink: 0;
}
.ih-cw-feature h3 {
    color: #003366;
    margin-bottom: 8px;
}
.ih-cw-feature p {
    color: #555;
    font-size: 0.95rem;
}

.ih-cw-details {
    padding: 4rem 0;
    background: white;
}
.ih-cw-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ih-cw-detail-card {
    background: #e6f2ff;
    padding: 25px 15px;
    border-radius: 10px;
}
.ih-cw-detail-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.ih-cw-detail-card p {
    color: #003366;
    font-weight: 600;
}

.ih-cw-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #003366, #002244);
    text-align: center;
    color: white;
}
.ih-cw-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ih-cw-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reuse blinking button */
.ih-btn-primary-large {
    display: inline-block;
    background: #FFD700;
    color: #003366;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: blinkPulse 2s infinite;
}
@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        transform: scale(1.03);
    }
}