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

html{
    font-size: 62.5%; /* 1rem = 10px */
}

body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    background-color: #f9f9f9;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-info {
    animation: slideInDown 0.8s ease-out;
}

.company-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.company-location {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.company-tagline {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Construction Banner */
.construction-banner {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.construction-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

/* Card specific gradient borders */
.card-1:hover {
    border-color: #FF6B6B;
}

.card-2:hover {
    border-color: #4ECDC4;
}

.card-3:hover {
    border-color: #FFE66D;
}

.card-4:hover {
    border-color: #95E1D3;
}

.card-5:hover {
    border-color: #A8E6CF;
}

/* Icon Wrapper */
.card-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeInScale 0.6s ease-out;
}

.icon-large {
    font-size: 4.5rem !important;
    display: inline-block;
    transition: all 0.4s ease;
}

.card-1 .icon-large { color: #FF6B6B; }
.card-2 .icon-large { color: #4ECDC4; }
.card-3 .icon-large { color: #FFE66D; }
.card-4 .icon-large { color: #95E1D3; }
.card-5 .icon-large { color: #A8E6CF; }

.product-card:hover .icon-large {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Product Title */
.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-title {
    color: #667eea;
}

/* Product Description */
.product-description {
    font-size: 1.2rem;
    color: #777;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.product-card:hover .product-description {
    color: #555;
}

/* Card Accent Decoration */
.card-accent {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-1 .card-accent { background: #FF6B6B; }
.card-2 .card-accent { background: #4ECDC4; }
.card-3 .card-accent { background: #FFE66D; }
.card-4 .card-accent { background: #95E1D3; }
.card-5 .card-accent { background: #A8E6CF; }

.product-card:hover .card-accent {
    width: 100%;
}

/* SVG Section */
.svg-section {
    padding: 3rem 0;
}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
    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;
}

.main-title h2{
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.svg-img{
   display: block;
   margin: auto;
}

svg{
    display: block;
   margin: auto;
}

#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;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.text-content {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.footer {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    background-color: #333;
    color: white;
    text-align: center;
    font-size: 1.3rem;
    margin-top: 3rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .company-location {
        font-size: 1.1rem;
    }
    
    .company-tagline {
        font-size: 1.3rem;
    }
    
    .construction-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .icon-large {
        font-size: 3.5rem !important;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-location {
        font-size: 1rem;
    }
    
    .company-tagline {
        font-size: 1.1rem;
    }
    
    .construction-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .icon-large {
        font-size: 2.8rem !important;
    }
}

@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 */

  @media (min-width: 640px){
    .main-title h1{
        font-size: 5rem;
        text-transform: uppercase;
        font-weight: 700;
        color: #555;
    }
    
    .main-title h2{
        font-size: 3rem;
        font-weight: 300;
        text-transform: uppercase;
    }
    
     
    }
     
    @media (min-width: 768px){
        .main-title h1{
            font-size: 6rem;
            text-transform: uppercase;
            font-weight: 800;
            color: #555;
        }
        
        .main-title h2{
            font-size: 4rem;
            font-weight: 300;
            text-transform: uppercase;
        }
    
     
    }
     
    @media (min-width: 1024px){
     
        .main-title h1{
            font-size: 7rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #555;
        }
        
        .main-title h2{
            font-size: 5rem;
            font-weight: 300;
            text-transform: uppercase;
        }
     
    }
     
    @media (min-width: 1200px){
     
        .main-title h1{
            font-size: 8rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #555;
        }
        
        .main-title h2{
            font-size: 5rem;
            font-weight: 300;
            text-transform: uppercase;
        }

        .main-title{
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 4rem;
        }
        
     
    }