/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --hover-color: rgb(255, 0, 0);
    --primary-text-color: white;
    --head-color: rgb(255, 0, 0);
}

body {
    background-color: rgb(12, 12, 12);
    color: var(--primary-text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    background-color:black;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    color: var(--primary-text-color);
    font-size: 2.5rem;
    font-weight: bold;
}

/* Base styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    position: relative;
}

.nav-items {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-items li a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-items li a {
  position: relative;
  display: inline-block;
  color: var(--primary-text-color);
  text-decoration: none;
  padding-bottom: 5px; /* space for underline */
  transition: color 0.3s ease;
}

.nav-items li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: var(--hover-color);
  transition: width 0.3s ease;
}

.nav-items li a:hover::after {
  width: 100%;
}


/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-text-color);
    cursor: pointer;
}

/* Responsive styles */
/* Responsive styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-items {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background-color: #1c1c1c;
        padding: 8rem 1.9rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.4);
        border-radius: 0;
        transition: right 0.4s ease;
        display: flex;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-items.active {
        right: 0;
    }

    .nav-items li {
        margin: 0.5rem 0;
    }

    /* Optional: darken background behind menu */
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}


/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(/images/hero-back.jpg);
    background-position: bottom;
    padding: 1% 10%;
    flex-wrap: wrap;
    gap: 2rem;
    overflow: hidden;
}

.hero-column1 {
    flex: 1;
    max-width: 600px;
}

.hero-column1 h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #cccccc70;
}

.hero-column1 h3 span {
    color: var(--hover-color);
}

.hero-column1 h1 {
    margin-top: -50px;
    font-size: 8rem;
    color: var(--primary-text-color);
}

.hero-column1 h2 {
    font-size: 8rem;
    color: var(--head-color);
    margin-bottom: 1rem;
    margin-left: 8rem;
    margin-top: -6rem;
}

.hero-column1 p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

/* Hero Image */
.hero-column img {
    width: 400px;
    
    /* border-radius: 50%; */
    object-fit: cover;
    object-position: 5% 10%;

    }
.hero-section button
{
    border: none;
    color: rgb(18, 17, 17);
    padding: 10px 32px;
    border-radius: 20px;
    text-transform: capitalize;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    margin: 14px 0;
    cursor: pointer;
    transition: all 0.5s ease-in-out 0s;
}
.hero-section button:hover{
    background-color:var(--hover-color);
    color: var(--primary-text-color);
}

/* responsive hero section */
/* Responsive Styles for Hero Section */
@media (max-width: 1280px) {
.hero-column img {
    width: 328px;
  
}
}

@media (max-width: 1200px) {
    .hero-column1 h1 {
        font-size: 6rem;
    }

    .hero-column1 h2 {
        font-size: 6rem;
        margin-left: 4rem;
        margin-top: -4rem;
    }

    .hero-column img {
        width: 350px;
        
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 10% 5%;
    }

    .hero-column1 {
        max-width: 100%;
    }

    .hero-column1 h1 {
        font-size: 5rem;
        margin-top: 0;
    }

    .hero-column1 h2 {
        font-size: 5rem;
        margin-left: 0;
        margin-top: -3rem;
    }

    .hero-column img {
        width: 300px;
        
    }
}

@media (max-width: 576px) {
    .hero-column1 h1 {
        font-size: 3rem;
    }

    .hero-column1 h2 {
        font-size: 3rem;
        margin-top: -2rem;
    }

    .hero-column1 p {
        font-size: 1rem;
    }

    .hero-column img {
        width: 249px;
    }

    .hero-section button {
        padding: 8px 24px;
        font-size: 16px;
    }
}


.mywork {
    padding: 4rem 10%;
    background-color: #111;
    text-align: center;
}

.mywork h1 {
    font-size: 3rem;
    color: var(--primary-text-color);
    margin-bottom: 3rem;
    text-transform: capitalize;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.work-gallery img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.work-gallery img:hover {
    transform: scale(1.10);
}
/* media screen */
@media (max-width: 992px) {
    .work-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row on tablets */
    }
    .mywork h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .work-gallery {
        grid-template-columns: 1fr; /* 1 image per row on mobile */
    }
     .mywork h1 {
        font-size: 2rem;
    }
}

/* testimonial section  */
.testimonials {
    padding: 4rem 10%;
    background-color: #1a1a1a;
    text-align: center;
}

.testimonials h1 {
    color: var(--primary-text-color);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    color: #ddd;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    color: var(--hover-color);
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    display: block;
    border: 2px solid var(--hover-color); /* optional border for style */
}

/* Optional: Adjust spacing on small screens */
@media (max-width: 576px) {
  .testimonials h1 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .testimonial-card h4 {
    font-size: 1rem;
  }
}

/* pricing table  */
.pricing-section {
    padding: 4rem 10%;
    text-align: center;
    background-color: #03010d;
}

.pricing-section h1 {
    font-size: 3rem;
    color: var(--primary-text-color);
    margin-bottom: 3rem;
}

.pricing-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(242, 97, 63, 0.4);
    border-color: var(--hover-color);
}

.pricing-card h2 {
    color: var(--hover-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}
.price i {
    font-size: 30px;
    
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    color: #ccc;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    margin: 0.5rem 0;
}

.pricing-card button {
    background-color: var(--hover-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.pricing-card button:hover {
    background-color: #ff5c3a;
}

/* Responsive adjustments for pricing table */
@media (max-width: 1024px) {
    .pricing-container {
        justify-content: space-around;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 5%;
    }

    .pricing-section h1 {
        font-size: 2.2rem;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .pricing-card h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .pricing-card button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* Footer Section  */
/* Footer Styles */
.site-footer {
  background-color: black ;
  color: #ddd;
  padding: 3rem 10%;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer h2 {
  color: var(--hover-color);
  margin-bottom: 1rem;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}
.footer-about img{
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 5% 10%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin: auto;
    margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  
}

.footer-links ul li {
  margin: 0.5rem 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--hover-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
  font-size: 0.9rem
}
.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #ccc;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--hover-color);
}

.footer-bottom p i.fa-heart {
  
  margin: 0 4px;
}
.heart-icon {
  color: red;
  animation: beat 1s infinite;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}



/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
.footer-bottom p{
flex-wrap:wrap;
    margin-top: -20px;
    margin-bottom: 50px;

}
  .site-footer {
    padding: 2rem 5%;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }
}
