/* Contact Info Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item i {
    font-size: 24px;
    color: #ffffff;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 30px;
}

.contact-info-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}

.contact-info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #009247;
}

/* Email Header */
.email-header {
    display: flex;
    align-items: center;
    font-size: 24px;
   
}

.email-header i {
    margin-top: 15px;
    color: #ffffff;
    margin-right: 15px;
}

/* List Style Reset */
.info-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Facebook/LinkedIn Icons as Links */
.social-link-item i {
    transition: transform 0.3s ease;
}

.social-link-item a:hover i {
    transform: scale(1.1);
}
.footer-widget h1{
    font-size:40px;
    color: #ffffff;
    
}

/* Footer Icon Hover Section  */

.contact-info-item i {
                 
    background-color: transparent;
    padding: 5px;                  /* space for background */
    border-radius: 15%;             /* circle background */
    transition: all 0.3s ease;
}

/* Hover ONLY on icon */
.contact-info-item i:hover {
    background-color: #009247;      /* green background */
    color: #ffffff;                 /* white icon */
}




.email-header i{
    background-color: transparent;
    padding: 5px;                  /* space for background */
    border-radius:10%;             /* circle background */
  
}


 .footer-top-email .email-header {
    font-size: 60px;
}

  /* ===============================
   FOOTER EMAIL 3D ANIMATION
   =============================== */

.email-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

/* Animation class (added by JS) */
.email-header.animate-3d {
    animation: email3dMotion .9s ease forwards;
}


/* ===============================
   FIX: FOOTER EMAIL RESPONSIVE
   =============================== */

.footer-top-email{
    padding-left: 12px;
    padding-right: 12px;
}

/* allow wrapping + fit inside mobile width */
.footer-top-email .email-header{
    display: flex;            /* inline-flex -> flex */
    flex-wrap: wrap;          /* wrap allow */
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;

    /* responsive font size */
    font-size: clamp(20px, 5vw, 60px);
    line-height: 1.2;
}

/* email link should wrap & not overflow */
.footer-top-email .email-header a{
    display: inline-block;
    max-width: 100%;
    white-space: normal;          /* wrap allow */
    overflow-wrap: anywhere;      /* break anywhere if needed */
    word-break: break-word;       /* safe breaking */
    text-align: center;
}

/* arrow size responsive */
.footer-top-email .email-header a span{
    font-size: clamp(18px, 4vw, 50px) !important;
    line-height: 1;
}

/* icon responsive */
.footer-top-email .email-header i{
    font-size: clamp(22px, 5vw, 50px);
    margin-top: 0 !important;
}

/* your hover had a typo: color:ffffff -> #ffffff */
.email-header i:hover {
    background-color: #009247;
    color: #ffffff;
}


/* 3D keyframes */
@keyframes email3dMotion {
    0% {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    30% {
        transform: perspective(800px) rotateX(10deg) rotateY(-12deg) scale(1.03);
    }
    60% {
        transform: perspective(800px) rotateX(-9deg) rotateY(10deg) scale(1.02);
    }
    100% {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1);
    }

    
}










