﻿/* ===== Global & Hero Section ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #f7f9fb;
}
.ILanding_P_hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
    overflow: hidden;
    isolation: isolate;
}
.ILanding_P_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #0A2540, #1F4E79, #00B4D8, #006494);
    background-size: 400% 400%;
    animation: ILanding_P_gradientMove 20s ease infinite, ILanding_P_zoomEffect 30s ease-in-out infinite alternate;
    z-index: 0;
}
.ILanding_P_hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}
@keyframes ILanding_P_gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes ILanding_P_zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}
.ILanding_P_hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 1rem;
}
.ILanding_P_hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-80px);
    animation: ILanding_P_slideDown 1.5s ease-out forwards;
}
.ILanding_P_sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #4DD0E1;
    opacity: 0;
    transform: translateY(60px);
    animation: ILanding_P_fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.6s;
}
.ILanding_P_hero p {
    font-size: 0.95rem;
    max-width: 700px;
    margin: auto;
    margin-bottom: 2.2rem;
    color: #D1D5DB;
    opacity: 0;
    transform: translateY(80px);
    animation: ILanding_P_slideUp 1.5s ease-out forwards;
    animation-delay: 1.2s;
}
.ILanding_P_cta {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #00B4D8, #4DD0E1, #0096C7);
    background-size: 200% auto;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(100px);
    animation: ILanding_P_fadeInUp 1.5s ease-out forwards;
    animation-delay: 1.8s;
    box-shadow: 0 0 15px rgba(0,180,216,0.4);
}
.ILanding_P_cta:hover {
    background-position: right center;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(77,208,225,0.7), 0 0 50px rgba(0,150,199,0.5);
}
@keyframes ILanding_P_slideDown {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ILanding_P_slideUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ILanding_P_fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

:root {
    --ILanding_P_Cont_primary: #0b3d91;
    --ILanding_P_Cont_secondary: #ff6a00;
    --ILanding_P_Cont_muted: #6b7280;
    --ILanding_P_Cont_card: #fff;
}

.ILanding_P_Cont_contact-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.ILanding_P_Cont_contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(11, 61, 145, 0.15), rgba(255, 106, 0, 0.05));
    opacity: 0.5;
    z-index: 0;
}

.ILanding_P_Cont_header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight:700
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.ILanding_P_Cont_header.ILanding_P_Cont_visible {
    opacity: 1;
    transform: translateY(0);
}

.ILanding_P_Cont_header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--ILanding_P_Cont_primary);
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  }

.ILanding_P_Cont_header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--ILanding_P_Cont_primary), var(--ILanding_P_Cont_secondary));
    margin: 12px auto 0;
    border-radius: 2px;
}

.ILanding_P_Cont_header h1 span {
    background: linear-gradient(90deg, var(--ILanding_P_Cont_primary), var(--ILanding_P_Cont_secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ILanding_P_Cont_header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #374151;
    max-width: 800px;
    margin: 1rem auto 0;
    transition: all 0.8s ease-out;
}

.ILanding_P_Cont_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.ILanding_P_Cont_card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.6s ease;
    border: 1px solid rgba(11, 61, 145, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    background-image: linear-gradient(45deg, rgba(11, 61, 145, 0.05), rgba(255, 255, 255, 0.05));
}
.ILanding_P_Cont_card:nth-child(1) {
    opacity: 0;
    transform: translateX(-100px) rotate(-5deg);
}
.ILanding_P_Cont_card:nth-child(2) {
    opacity: 0;
    transform: scale(0.8);
}
.ILanding_P_Cont_card:nth-child(3) {
    opacity: 0;
    transform: translateX(100px) rotate(5deg);
}
.ILanding_P_Cont_card.ILanding_P_Cont_visible:nth-child(1) {
    opacity: 1;
    transform: translateX(0) rotate(0);
}
.ILanding_P_Cont_card.ILanding_P_Cont_visible:nth-child(2) {
    opacity: 1;
    transform: scale(1);
}
.ILanding_P_Cont_card.ILanding_P_Cont_visible:nth-child(3) {
    opacity: 1;
    transform: translateX(0) rotate(0);
    animation: bounceIn 0.8s ease-out forwards;
}
@keyframes bounceIn {
    0% { transform: translateX(100px) rotate(5deg); opacity: 0; }
    60% { transform: translateX(0) rotate(0) scale(1.05); opacity: 0.8; }
    100% { transform: translateX(0) rotate(0) scale(1); opacity: 1; }
}
.ILanding_P_Cont_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ILanding_P_Cont_primary), var(--ILanding_P_Cont_secondary));
    transition: all 0.4s ease;
}
.ILanding_P_Cont_card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--ILanding_P_Cont_secondary);
}
.ILanding_P_Cont_card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--ILanding_P_Cont_secondary), var(--ILanding_P_Cont_primary));
}
.ILanding_P_Cont_card img {
    width: 50%;
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.ILanding_P_Cont_card:hover img {
    transform: scale(1.1) rotate(3deg);
}
.ILanding_P_Cont_card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ILanding_P_Cont_primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}
.ILanding_P_Cont_card p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}
.ILanding_P_Cont_card .ILanding_P_Cont_contact-info {
    font-size: 0.95rem;
    color: #0000FF;
    font-family: 'Arial', sans-serif;
    border: 1px solid rgba(11, 61, 145, 0.2);
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease;
}
.ILanding_P_Cont_card:hover .ILanding_P_Cont_contact-info {
    background: rgba(255, 106, 0, 0.1);
}
.ILanding_P_Cont_card .ILanding_P_Cont_contact-info a {
    color: #5D00FF;
    text-decoration: none;
    transition: color 0.3s ease;
}
.ILanding_P_Cont_card .ILanding_P_Cont_contact-info a:hover {
    color: var(--ILanding_P_Cont_secondary);
}
.ILanding_P_Cont_map-container {
    margin: 3rem 1rem 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(11, 61, 145, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
    height: 400px;
}
.ILanding_P_Cont_map-container.ILanding_P_Cont_visible {
    opacity: 1;
    transform: scale(1);
}
.ILanding_P_Cont_map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@keyframes ILanding_P_Cont_fadeInUp {
    to { opacity: 1; transform: translateY(0) rotate(0); }
}
.ILanding_P_Cont_visible {
    opacity: 1 !important;
    transform: translateY(0) rotate(0) !important;
}
@media (max-width: 1024px) {
    .ILanding_P_Cont_grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .ILanding_P_Cont_card { padding: 1.5rem; }
    .ILanding_P_Cont_card img { width: 45%; }
}
@media (max-width: 768px) {
    .ILanding_P_Cont_header h1 { font-size: 1.8rem; padding: 15px; }
    .ILanding_P_Cont_header p { font-size: 1rem; }
    .ILanding_P_Cont_card { padding: 1.5rem; }
    .ILanding_P_Cont_card h3 { font-size: 1.4rem; }
    .ILanding_P_Cont_card p { font-size: 0.95rem; }
    .ILanding_P_Cont_card .ILanding_P_Cont_contact-info { font-size: 0.9rem; }
    .ILanding_P_Cont_map-container { height: 300px; padding: 0.75rem; }
    .ILanding_P_Cont_grid { gap: 1rem; }
}
@media (max-width: 576px) {
    .ILanding_P_Cont_header h1 { font-size: 1.6rem; padding: 12px; }
    .ILanding_P_Cont_header p { font-size: 0.95rem; }
    .ILanding_P_Cont_card { padding: 1rem; }
    .ILanding_P_Cont_card h3 { font-size: 1.2rem; }
    .ILanding_P_Cont_card p { font-size: 0.9rem; }
    .ILanding_P_Cont_card img { width: 40%; }
    .ILanding_P_Cont_map-container { height: 250px; padding: 0.5rem; }
}
