* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo {
    color: #1a4cff;
    font-weight: bold;
    font-size: 20px;
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}


.hero img {
    width: 100%;
    height: auto;
}


.shop {
    padding: 40px;
    text-align: start;
    color: rgba(0, 45, 105, 1);
}

.shop h2 {
    display: inline-block;
    margin-bottom: 30px;
}

.items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.item {
    width: 18%;
}

.item img {
    width: 100%;
    background: #f2f2f2;
    padding: 20px;
}

.item p {
    margin-top: 10px;
    font-size: 12px;
}


.top-section {
    display: flex;
    height: 500px;
}

.text-box {
    width: 40%;
    background-color: #0b3c74;
    color: white;
    padding: 50px;
}

.text-box h1 {
    font-size: 32px;
    margin-top: 90px;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text-box button {
    padding: 10px 20px;
    border: none;
    background-color: white;
    color: #0b3c74;
    cursor: pointer;
}


.image-box {
    width: 60%;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.latest {
    padding: 40px;
    text-align: center;
}

.latest h2 {
    margin-left: 60px;
    margin-bottom: 25px;
    color: #0b3c74;
    text-align: start;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 25px;
}

.gallery img {
    width: 320px;
    height: 360px;
    object-fit: cover;
}

.gallery-btn {
    padding: 10px 25px;
    background-color: #0b3c74;
    color: white;
    border: none;
    cursor: pointer;
}

.reviews-section {
    padding: 50px;
    text-align: center;
}

.reviews-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.review-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.review-card {
    width: 360px;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 4px;
    background: #fafafa;
    text-align: left;
}

.review-card .quote {
    font-size: 32px;
    color: #003d8e;
    margin: 0;
}

.review-card span {
    display: block;
    margin-top: 10px;
    font-style: italic;
    font-size: 14px;
}


.services-section {
    text-align: center;
    color: rgba(0, 45, 105, 1);
    padding: 40px;
}

.services-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: start;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.service-card {
    width: 360px;
}

.service-card img {
    width: 100%;
}

.service-card h3 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
}

.learn-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #003d8e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.learn-btn:hover {
    background: #0053c4;
}

.subscribe-wrapper {
    background: #b7d9ea;
    padding: 50px;
    display: flex;
    justify-content: center;
}

.subscribe-card {
    display: flex;
    width: 750px;
    height: 300px;
    background: white;
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.subscribe-card img {
    width: 45%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.subscribe-content {
    padding: 30px;
    text-align: center;
    margin-top: 60px;
}

.subscribe-content h2 {
    margin: 0 0 10px;
}
.subscribe-content p {
    margin: 0 0 10px;
}

.subscribe-btn {
    margin-top: 15px;
    padding: 10px 25px;
    border: none;
    background: #003d8e;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}


.footer {
    background: #b7d9ea;
    padding: 40px 50px 20px;
}

.footer-links {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
}

.footer-column p{
    color: rgba(83, 88, 95, 1);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Keyframe animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 76, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(26, 76, 255, 0);
    }
}

@keyframes spin-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(135deg, #1a4cff 0%, #0b3c74 100%);
    }
    50% {
        background: linear-gradient(135deg, #0b3c74 0%, #1a4cff 100%);
    }
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a4cff 0%, #0b3c74 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(26, 76, 255, 0.3);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 76, 255, 0.5);
    animation: pulse-glow 1.5s ease-out infinite;
}

.social-icon:hover i {
    animation: spin-icon 0.6s ease-in-out;
    color: #fff;
}

/* Stagger animation for multiple icons */
.social-icon:nth-child(1) {
    animation-delay: 0s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.6s;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

