body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0;
    color: #222;
}
header {
    background: linear-gradient(90deg, #0f2027, #2c5364);
    color: #fff;
    padding: 30px 0 20px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}
header .logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}
header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 10px 0 5px 0;
    color: #ffd700;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.15);
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffd700;
}
.floating-icons {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    z-index: 10;
    pointer-events: none;
}
.floating-icons i {
    font-size: 2.2rem;
    color: #ffd700;
    opacity: 0.7;
    filter: drop-shadow(0 2px 6px rgba(44,83,100,0.12));
    transition: transform 0.2s, color 0.2s;
}
.hero {
    background: linear-gradient(120deg, #2c5364 60%, #ffd700 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44,83,100,0.10);
    max-width: 800px;
    margin: 40px auto 32px auto;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    color: #fffbe7;
}
.cta-btn {
    background: #ffd700;
    color: #2c5364;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,83,100,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.cta-btn:hover {
    background: #2c5364;
    color: #ffd700;
    transform: scale(1.05);
}
.features {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(44,83,100,0.07);
    max-width: 900px;
    margin: 32px auto;
    padding: 32px 24px;
    text-align: center;
}
.features h2 {
    color: #2c5364;
    margin-bottom: 24px;
    font-size: 2rem;
    letter-spacing: 1px;
}
.features-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-card {
    background: #e0e7ef;
    border-radius: 10px;
    padding: 28px 18px;
    box-shadow: 0 2px 12px rgba(44,83,100,0.06);
    flex: 1 1 220px;
    min-width: 220px;
    margin: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(44,83,100,0.13);
    transform: translateY(-8px) scale(1.03);
}
.feature-card i {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 12px;
}
.feature-card h3 {
    color: #2c5364;
    margin-bottom: 10px;
}
.section-divider {
    text-align: center;
    margin: 32px 0;
    font-size: 2rem;
    color: #ffd700;
}
.section-divider i {
    margin: 0 8px;
    transition: color 0.2s, transform 0.2s;
}
.section-divider i:hover {
    color: #2c5364;
    transform: scale(1.2);
}
.tech-icons {
    text-align: center;
    margin: 40px 0 30px 0;
}
.tech-icons h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #2c5364;
    letter-spacing: 1px;
}
.tech-icons .icons {
    font-size: 2.5rem;
    color: #2c5364;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.tech-icons .icons i {
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
}
.tech-icons .icons i:hover {
    color: #ffd700;
    transform: scale(1.2);
}
footer {
    background: #2c5364;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
    font-size: 1rem;
    letter-spacing: 1px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin: 32px 0;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,83,100,0.08);
    padding: 28px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: left;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(44,83,100,0.13);
    transform: translateY(-8px) scale(1.03);
    border-color: #ffd700;
}
.service-card i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: linear-gradient(90deg, #ffd700 0%, #fffbe7 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,83,100,0.10);
    padding: 28px 24px;
    margin: 32px 0 40px 0;
    border: 2px solid #ffd700;
    position: relative;
}
.promo-icon {
    font-size: 3.5rem;
    color: #fff;
    background: linear-gradient(135deg, #ffb300 60%, #ffd700 100%);
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(44,83,100,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 26px;
    background: #2c5364;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(44,83,100,0.10);
}
.promo-btn:hover {
    background: #ffd700;
    color: #2c5364;
}
.contact-info {
    background: #e0e7ef;
    border-radius: 10px;
    padding: 28px 18px;
    box-shadow: 0 2px 12px rgba(44,83,100,0.06);
    text-align: left;
    min-width: 220px;
    margin-top: 20px;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1.08rem;
    color: #2c5364;
    background: #fff;
    border-radius: 6px;
    padding: 10px 12px;
    box-shadow: 0 1px 4px rgba(44,83,100,0.06);
}
.contact-list i {
    color: #ffd700;
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}
.social-links {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44,83,100,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    object-fit: cover;
    background: #fff;
    padding: 5px;
}
.social-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(44,83,100,0.18);
    background: #ffd700;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin: 32px 0;
}
.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,83,100,0.08);
    padding: 28px 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: left;
}
.project-card:hover {
    box-shadow: 0 8px 32px rgba(44,83,100,0.13);
    transform: translateY(-8px) scale(1.03);
    border-color: #ffd700;
}
.project-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}
