*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --primary-dark: #5a52e0;
    --secondary: #4CAF50;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #777;
    --shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html{
    font-size: 62.5%; /* 1rem = 10px */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-bottom: 5rem;
    background-color: #fafafa;
}

.container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.main-title{
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-shadow: 
    1px 0px 1px #ccc, 0px 1px 1px #eee, 
    2px 1px 1px #ccc, 1px 2px 1px #eee,
    3px 2px 1px #ccc, 2px 3px 1px #eee,
    4px 3px 1px #ccc, 3px 4px 1px #eee,
    5px 4px 1px #ccc, 4px 5px 1px #eee,
    6px 5px 1px #ccc, 5px 6px 1px #eee,
    7px 6px 1px #ccc;
}

.main-title h1{
    font-size: 7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2rem;
}

.main-title h2{
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1rem;
}

/* Contact Info Styles */
.row.align-items-center {
    min-height: 70vh;
}

.col-lg-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-info {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
}

.contact-card {
    background-color: var(--light);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transition: var(--transition);
    width: 100%;
    max-width: 90%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(108, 99, 255, 0.2);
}

.contact-heading {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    background-color: white;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 3px solid transparent;
}

.contact-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.phone-btn {
    color: #2a9d8f;
    border-color: #2a9d8f;
}

.phone-btn:hover {
    background-color: #2a9d8f;
    color: white;
}

.email-btn {
    color: #e76f51;
    border-color: #e76f51;
}

.email-btn:hover {
    background-color: #e76f51;
    color: white;
}

.btn-icon {
    font-size: 4.2rem;
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.phone-btn .btn-icon {
    background-color: rgba(42, 157, 143, 0.1);
}

.email-btn .btn-icon {
    background-color: rgba(231, 111, 81, 0.1);
}

.phone-btn:hover .btn-icon,
.email-btn:hover .btn-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-label {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    opacity: 0.8;
}

.btn-value {
    font-size: 3rem;
    font-weight: 600;
    word-break: break-word;
    hyphens: auto;
}

.email-btn .btn-value {
    font-size: 2.8rem;
}

.svg-img {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
}

svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
}

#clock{
    animation: clockHand 5s infinite linear;
    transform-box: fill-box;
    transform-origin: bottom;
}

#leftTree, #righTree{
    animation: tree 2s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#man{
    animation: manBody 1s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#pc-circle{
    fill: #6ace66;
    stroke-width: 4;
    animation: change-light 4s linear infinite alternate;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    background-color: var(--light);
    font-size: 1.6rem;
    color: var(--gray);
    box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.05);
    z-index: 10;
}

@keyframes clockHand{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(-360deg);
    }
}

@keyframes manBody{
    from{
        transform: rotateX(0deg);
    }
    to{
        transform: rotateX(10deg);
    }
}

@keyframes tree{
    from{
        transform: rotateZ(10deg);
    }
    to{
        transform: rotateZ(-20deg);
    }
}

@keyframes change-light {
    0% {
        stroke: #cd61f8;
      }
      25% {
        stroke: #6ace66;
      }
      75% {
        stroke: #2995c0;
      }
      100% {
        stroke: #e92949;
      }
}

/* Media Queries - Improved Responsiveness */
@media (max-width: 1400px) {
    .btn-icon {
        font-size: 4rem;
        width: 6.5rem;
        height: 6.5rem;
    }
    
    .btn-value {
        font-size: 2.8rem;
    }
    
    .btn-label {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .contact-card {
        padding: 3.5rem 2.5rem;
    }
    
    .contact-heading {
        font-size: 3.8rem;
    }
    
    .btn-icon {
        font-size: 3.8rem;
        width: 6rem;
        height: 6rem;
    }
    
    .btn-value {
        font-size: 2.6rem;
    }
    
    .email-btn .btn-value {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .row.align-items-center {
        min-height: auto;
    }
    
    .contact-card {
        max-width: 100%;
        margin-top: 2rem;
        padding: 3rem 2rem;
    }
    
    .main-title h1 {
        font-size: 5.5rem;
    }
    
    .main-title h2 {
        font-size: 3.2rem;
    }
    
    .contact-heading {
        font-size: 3.5rem;
    }
    
    .btn-value {
        font-size: 2.4rem;
    }
    
    .btn-label {
        font-size: 1.8rem;
    }
    
    .btn-icon {
        font-size: 3.5rem;
        width: 5.5rem;
        height: 5.5rem;
        margin-right: 2rem;
    }
    
    .contact-btn {
        padding: 2rem 2.5rem;
    }
    
    .email-btn .btn-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .main-title h1 {
        font-size: 4.5rem;
    }
    
    .main-title h2 {
        font-size: 2.8rem;
    }
    
    .contact-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-heading {
        font-size: 3.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-buttons {
        gap: 2rem;
    }
    
    .btn-value {
        font-size: 2.2rem;
    }
    
    .btn-label {
        font-size: 1.6rem;
    }
    
    .btn-icon {
        font-size: 3.2rem;
        width: 5rem;
        height: 5rem;
        margin-right: 1.8rem;
    }
    
    .contact-btn {
        padding: 1.8rem 2.2rem;
    }
    
    .email-btn .btn-value {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .main-title {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .main-title h1 {
        font-size: 4rem;
    }
    
    .main-title h2 {
        font-size: 2.5rem;
    }
    
    .contact-heading {
        font-size: 2.8rem;
    }
    
    .btn-value {
        font-size: 2rem;
    }
    
    .btn-label {
        font-size: 1.4rem;
    }
    
    .btn-icon {
        font-size: 2.8rem;
        width: 4.5rem;
        height: 4.5rem;
        margin-right: 1.5rem;
    }
    
    .contact-btn {
        padding: 1.5rem 2rem;
        border-width: 2px;
    }
    
    .email-btn .btn-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 420px) {
    .main-title h1 {
        font-size: 3.6rem;
    }
    
    .main-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-heading {
        font-size: 2.4rem;
    }
    
    .btn-value {
        font-size: 1.8rem;
    }
    
    .btn-label {
        font-size: 1.2rem;
    }
    
    .btn-icon {
        font-size: 2.4rem;
        width: 4rem;
        height: 4rem;
        margin-right: 1.2rem;
    }
    
    .contact-btn {
        padding: 1.2rem 1.8rem;
    }
    
    .email-btn .btn-value {
        font-size: 1.6rem;
    }
}