*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
}

/* ================= NAVBAR ================= */
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px;
    width:100%;
    margin:0 auto;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.logo img{
    height:48px;
}
/* ================= SOCIAL ICONS ================= */
/* ================= IMAGE SOCIAL ICONS ================= */

.header-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-icons a{
    display:inline-block;
    transition:transform 0.3s ease;
}

.header-icons img{
    width:32px;
    height:32px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 5px 12px rgba(0,0,0,0.25);
}

/* Hover Effect */
.header-icons a:hover{
    transform:translateY(-4px) scale(1.1);
}
/* NAV MENU */
nav{
    display:flex;
    align-items:center;
    gap:14px;
}

nav a{
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    color:#1c1f26;
    transition:all 0.3s ease;
}

nav a:hover{
    background:#f2f5f9;
    transform:translateY(-2px);
}

nav a.active{
    background:#0f4c81;
    color:#ffffff;
}

nav a.contact{
    background:#28a745;     /* Green */
    color:#ffffff;          /* White text */
    font-weight:600;
    transition:0.3s ease;
}

nav a.contact:hover{
    background:#ffffff;     /* White background */
    color:#28a745;          /* Green text */
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
/* ================= HAMBURGER ================= */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span{
    height:3px;
    width:26px;
    background:#1c1f26;   /* Dark charcoal */
    margin:4px 0;
    border-radius:2px;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(135deg, #faf9f6, #f1ece6);
    color: #222222;
    padding: 80px 10%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 18px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
	text-transform: uppercase;
    animation: fadeUp 1s ease forwards, brandColors 8s steps(4) infinite;
}

/*
.title-accent {
    display: block;
    width: 0;
    height: 4px;
    background: #000000;
    margin-top: 10px;
    border-radius: 4px;
    animation: expandLine 5s ease forwards;
    animation-delay: 0.8s;
}*/

.hero-subtitle {
    font-size: 18px;
    color: #0000FF;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
    line-height: 1.6;
}

/* Desktop */
@media (min-width: 768px) {
    .hero-subtitle {
        text-align: justify;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-subtitle {
        text-align: left;
    }
}

.hero h2 {
    line-height: 1.4;
}
/* Desktop */
@media (min-width: 768px) {
    .hero h2 {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero h2 {
        text-align: left;
    }
}
.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 1s;
}

.hero .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #ffffff;
    color: #0f4c81;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.hero .btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0f4c81;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}
/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 420px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* FLOATING */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* TEXT ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to { width: 120px; }
}

/* ================= STEE EXPANSION ================= */
.stee-expand {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.static-text {
    opacity: 0.9;
}

.rotating-words {
    height: 24px;
    overflow: hidden;
    position: relative;
    font-weight: 600;
}

.rotating-words span {
    display: block;
    height: 24px;
    animation: rotateWords 8s infinite, brandColors 8s steps(4) infinite;
}

/* ROTATION */
@keyframes rotateWords {
    0%   { transform: translateY(0); }
    20%  { transform: translateY(0); }
    25%  { transform: translateY(-24px); }
    45%  { transform: translateY(-24px); }
    50%  { transform: translateY(-48px); }
    70%  { transform: translateY(-48px); }
    75%  { transform: translateY(-72px); }
    95%  { transform: translateY(-72px); }
    100% { transform: translateY(0); }
}

/* ================= BRAND COLOR CYCLE ================= */
.hero-title {
    animation: fadeUp 1s ease forwards, brandColors 8s linear infinite;
}

.rotating-words span {
    display: block;
    height: 24px;
    animation: rotateWords 8s infinite, brandColors 8s linear infinite;
}
@keyframes brandColors {
    0%   { color: #8A2BE2; }   /* Violet */
    20%  { color: #4B0082; }   /* Indigo */
    40%  { color: #0000FF; }   /* Blue */
    60%  { color: #0000CD; }   /* Green */
    80%  { color: #4169E1; }   /* Orange */
    100% { color: #00008B; }   /* Red */
}
	animation: brandColors 8s linear infinite;
}

/* ================= SECTION ================= */
section{
    padding:80px 14%;
}
@media(max-width:992px){
    section{
        padding:70px 8%;
    }
}

@media(max-width:768px){
    section{
        padding:60px 20px;
    }
}
.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    color:#0f4c81;
}

/* ================= SERVICES ================= */
.services{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    max-width:1300px;
    margin:0 auto;
}

.service-card{
    background:#ffffff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.1);
    transition:transform 0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.service-card .content{
    padding:25px;
}

.service-card h3{
    color:#0f4c81;
    margin-bottom:10px;
}

.service-card p{
    font-size:14px;
    line-height:1.6;
}

@media(max-width:1200px){
    .services{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px){
    .services{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .services{
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ================= CTA ================= */
.cta{
    background: linear-gradient(135deg, #faf9f6, #f1ece6);
    color:#0000FF;
    text-align:center;
    padding:70px 10%;
}

.cta h2{
    font-size:34px;
    margin-bottom:15px;
}

.cta p{
    font-size:18px;
}

/* ================= FOOTER ================= */
footer{
    background:#ffffff;
    color:#222222;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .hamburger{ display:flex; }

    nav{
        position:absolute;
        top:70px;
        right:10%;
        background:#ffffff;
        box-shadow:0 15px 30px rgba(0,0,0,0.1);
        flex-direction:column;
        width:220px;
        padding:20px;
        border-radius:14px;
        display:none;
        /*box-shadow:0 15px 30px rgba(0,0,0,0.3);*/
    }

    nav.show{ display:flex; }

    nav a{
        width:100%;
        color:#1c1f26;
        text-align:center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        text-align: center;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 320px;
    }

    .hero-title {
        font-size:34px;
    }
}