/* general css*/
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
body
{
    min-height: 100vh;
    background: url(images/site-background-dark.webp) no-repeat center/cover fixed;
    position: relative;
}

body::before
{
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}


/* header section*/
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgba(0, 0, 0, .4);

    border-bottom: 2px solid rgba(255, 255, 255, .2);
    z-index: 99;
    color: white;
    transition: transform 0.5s ease, background-color 0.3s ;
}
header.scrolled
{
 
    background: black;
}

header.hide {
  transform: translateY(-100%);
}

nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo
{
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
}

.nav-links 
{
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 1rem;
}

.nav-links a
{
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin-left: 35px;
    transition: .3s;
}

.nav-links a.active {
  color: #FFD166;
  font-weight: 600;
}

.nav-links a:hover
{
    color: #FFD166;
}

#menu-icon
{
    color: #fff;
    font-size: 36px;
    display: none;
}
/* responsive header*/
@media (max-width:992px)
{
    header
    {
        padding: 1.25rem 4%;
    }
}

@media (max-width:768px)
{
    #menu-icon
    {
        display: block;
    }

   .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: .5rem 4%;
        margin: 0;
        display: block;
        background-color: rgba(0, 0, 0, .4);
        /* animation setup */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        z-index: 10000;
        transform: translateY(-10px);
        transition:
        max-height .5s ease,
        opacity .3s ease,
        transform .3s ease,
        background-color 0.3s;
    }

    .nav-links.scrolled
    {
        background-color: black;
    }

   

   
   
  
    .nav-links.active {
        max-height: 100vh; /* IMPORTANT */
        opacity: 1;
        transform: translateY(0);
}

    .nav-links a
    {
        display: block;
        margin: 1.5rem 0;
    }
}

/* -------------------------------------- hero section--------------------------*/

.hero
{
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 100px 60px;
    min-height: 100vh;
  
}


.hero-content
{
    max-width: 600px;
    color: #fff;
    z-index: 2;
}


.hero h1
{
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p
{
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.hero-cta a
{
    display: inline-block;
    margin-right: 15px;
    margin-top: 15px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-cta a.btn-primary, .hero-cta a:nth-child(1)
{
    background-color: #FFD166;
    color: #000;
}

.hero-cta a.btn-primary:hover,
.hero-cta a:nth-child(1):hover {
    background-color: #e6be39;
    color: #fff;
}


.hero-cta a.btn-secondary,
.hero-cta a:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-cta a.btn-secondary:hover,
.hero-cta a:nth-child(2):hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Tertiary button style */
.hero-cta a.btn-tertiary,
.hero-cta a:nth-child(3) {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-cta a.btn-tertiary:hover,
.hero-cta a:nth-child(3):hover {
    background-color: #fff;
    color: #ff4b4b;
}

.image-frame {
    position: relative;          /* for pseudo-element */
    width: 500px;
    height: 500px;               /* tall for full body, adjust as needed */
    border-radius: 50%;         /* rounded rectangle, not circle */
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;       /* bottom-align the image */
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

/* blurred background behind image */
.image-frame::before {
    content: '';
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0);  /* subtle tint */
    
    z-index: 1;
}

/* the transparent PNG */
.image-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;           /* keeps image fully visible */
    object-position: bottom center;/* bottom aligned */
    display: block;
    z-index: 2;                    /* above blur */
}

@media (max-width:992px)
{
    .hero
    {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 50px 20px;
        min-height: auto;
    }

    .image-frame {
        width: 300px;
        height: 300px;
    }



    .hero-cta
    {
        margin: 10px 5px;
    }
}

@media (max-width: 768px) {
    .hero
    {
        min-height: auto;
    }
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }




}
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column; /* stack vertically */
        align-items: center;    /* center buttons */
    }
    
    .hero-cta a {
        width: 100%;            /* full width */
        text-align: center;
    }
}



/* Services Section */
.services {
    padding: 100px 100px 60px;
   
    background: black;
    color: #fff;
     
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.services p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Services container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    grid-auto-rows: 1fr;
    align-items: stretch; 
    
}

.services .cta
{
    margin-top: 15px;

    font-size: 1.5rem;
}

.services .cta a
{
    text-decoration-color:  #FFD166;
}

/* Individual service card */
.service {
    background: rgba(255,255,255,0.06); /* lighter than section for subtle contrast */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.service p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.service a
{
    color: #000;
    padding: 8px 15px;
    background-color: #FFD166;
    transition: 0.3s ease;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
}



.service a:hover
{
    color: #fff;
    background-color: #e6be39;
}

.service strong {
    color: #FFD166;
}

/* Hover effect */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services {
        padding: 80px 40px 50px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px 40px;
    }

    .services h2 {
        font-size: 2rem;
    }

    .services p {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .service {
        padding: 20px;
    }
}







/* ===== ABOUT SECTION ===== */

/* ===== ABOUT SECTION ===== */

#about {
    position: relative;
    padding: 6rem 8%;
    background: black;
    color: #ffffff;
}

/* container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

/* text content */
.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

/* bullet points */
.about-points {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
}

.about-content a{
    color: #FFD166;
    transition: 0.3s ease;
}

.about-content a:hover
{
    color: #e6be39;
}

.about-points li {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    list-style: disc;
}



/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    #about {
        padding: 5rem 6%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .about-points {
        text-align: left;
        display: inline-block;
    }
}

/* Mobile */
@media (max-width: 576px) {
    #about {
        padding: 4rem 5%;
    }

   
}




/*---------------------------------- support ----------------------------*/

/* ===== SUPPORT / AFTER-SALES SERVICE ===== */

#support {

    padding: 6rem 8%;
   
    color: #ffffff;
    display: flex;
  
}



.support-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

/* Title */
#support h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

/* Intro text */
.support-intro {
    max-width: 760px;
    margin: 0 auto 4rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);

}

/* Grid layout */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Card */
.support-item {
    background-color: #151515; /* slightly lighter than body */
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 209, 102, 0.2); /* brand color border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.3); /* brand color glow */
}

/* Card title */
.support-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Card text */
.support-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA */
.support-cta {
    margin-top: 4rem;
}

.support-cta a {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background: #FFD166;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.support-cta a:hover {
    background: #e6be39;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    #support {
        padding: 5rem 6%;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    #support {
        padding: 4rem 5%;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-intro {
        font-size: 0.95rem;
    }
}

/*---------------------skills---------------*/




/* floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}




/*--------------------------faq----------------------*/

.faq {
    padding: 6rem 8%;
    background: black;
    color: #ffffff;
}


.faq .container {
    max-width: 900px;
    margin: 0 auto;
}


.faq h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.faq details {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 1.5rem;
   
    transition: all 0.3s ease;
}

.faq details:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq summary {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #FFD166;
}

.faq details[open] summary::after {
    content: '–';
}

.faq p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #cfd6ff;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 6%;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq summary {
        font-size: 1rem;
    }
}



/*********************************contact****************************/

.contact {
    padding: 6rem 8%;
    color: #ffffff;
    
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #cfd6ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: #151515; 
  border-radius: 16px;
  padding: 2rem 1.5rem;

  border: 1px solid rgba(255, 209, 102, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}



.contact-info address
{
    padding: 0;
}

.contact-info address p
{
    margin-bottom: 1rem;
    color: white;
}

.contact-info address p a
{
    color: #FFD166;
    text-decoration: #fff;
}




.contact-form {
    background-color: #151515; 
  border-radius: 16px;
  padding: 2rem 1.5rem;

  border: 1px solid rgba(255, 209, 102, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}


.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4da3ff;
}



.contact-form button {
    background: #FFD166;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease,color 0.3s ease, background 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    background-color: #e6be39;
    color: #fff;
    
}


@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2rem;
    }
}


/**********************contact******************/

#footer {
  background: #0d0d0d;
  color: #cfcfcf;
  padding: 4rem 8% 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links
{
    display: flex;
    flex-direction: column;
}

.footer-contact
{
    
    margin: 0 auto;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: .6rem;
  font-size: 0.95rem;
  
}

.footer-contact h4
{
    text-align: center;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color .3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}





/**************************************ABOUT PAGE**************************/

/***************** hero setion **************/

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
}

.hero-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1 1 500px;
    padding: 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f5f5f5; /* Light text for dark background */
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cccccc; /* Slightly softer light text */
}


/*********Story/background********/

/* Story Section */
.story-section {
    padding: 80px 20px;
    background-color: #000; /* Dark background */
    color: #f9f9f9; /* Light text */
    font-family: 'Poppins', sans-serif;
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.story-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.story-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.9;
    color: #fff;
}

.story-content p {
    margin-bottom: 25px;
}

.story-content p a
{
    color: #FFD166;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-decoration 0.3s;
}


.story-content p a:hover
{

    color: #e6be39; /* slightly darker brand color */
    text-decoration: underline;

}

.story-content p  i
{
    font-size: 1.5rem;
    color: #e6be39;
}
.story-content strong {
    color: #FFD166; /* highlight key words */
}


/************* skills section********/

.skills-section {
    padding: 80px 20px;
    background: inherit; /* keep dark background */
    color: #fff;
    text-align: center;
}

.skills-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.skills-section .section-header p {
    font-size: 1rem;
    
    margin-bottom: 50px;
    color: #ccc;
  
}

.skills-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.skills-category {
    background: #1a1a1a; /* dark card background */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skills-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.skills-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FFD166; /* brand color for titles */
    text-align: center;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.skills-list li i {
    font-size: 1.5rem;
    color: #FFD166;
    margin-right: 12px;
}

.skills-list li strong.brand-color {
    color: #FFD166; /* brand color for skill name */
    margin-right: 5px;
}
.brand-color 
{
    color: #FFD166;
}

.cta-section {
    background-color: black; /* match your dark body background */
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #FFD166; /* brand color */
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background-color: #FFD166; /* brand color */
    color: #1a1a1a;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}

.cta-section .btn-primary:hover {
    background-color: #e6be39; /* slightly darker on hover */
    color: #fff;
}


/******************* Services page***********/

/***** hero****/
#services-hero {
    padding: 100px 0 80px;
    text-align: center;
}

#services-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    width: auto;
    line-height: 1.2;
    margin-bottom: 20px;
}

#services-hero p {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}


/*process*/

/* ===== Process Section ===== */
.process-section {
  padding: 6rem 1rem;
  color: #fff; /* text color for dark background */
  background-color: #000;
}

.process-section .process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.process-section .process-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.process-section .process-header p {
  color: #fff;
  line-height: 1.6;
  font-size: 1rem;
}

/* Steps grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Each step card */
.process-step {
  background-color: #151515; /* slightly lighter than body */
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 209, 102, 0.2); /* brand color border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.3); /* brand color glow */
}

/* Step icon */
.process-step .step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFD166; /* brand color */
  border-radius: 50%;
  color: #0f0f0f; /* icon text color inside circle */
  font-size: 1.8rem;
}

/* Step title */
.process-step h3 {
  font-size: 1.3rem;
  margin: 0.8rem 0;
  color: #fff;
}

/* Step description */
.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}

/* Highlight brand-color inside steps */
.process-step .brand-color {
  color: #FFD166;
}

/* Optional small note for steps */
.process-step .step-note {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-section {
    padding: 4rem 1rem;
  }

  .process-step .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .process-step h3 {
    font-size: 1.15rem;
  }
}



.cta-section {
    background-color: #1a1a1a; /* Dark background */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}


.premium-section {
    background: black;
    color: #fff;
    padding: 100px 20px;
}

.premium-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-text {
    flex: 1 1 500px;
}

.premium-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.premium-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.premium-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.premium-text ul li {
    margin-bottom: 15px;
    font-weight: 500;
}

.premium-text .btn-primary {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #FFD166;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.premium-text .btn-primary:hover {
    background-color: #e6be39;
    color: #fff;
}

.premium-image {
    
    text-align: center;
}

.premium-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media screen and (max-width: 900px) {
    .premium-content {
        flex-direction: column;
        text-align: center;
    }

    .premium-image img {
        margin-top: 40px;
    }
}


/* =========================
   REALISATIONS SECTION
========================= */

.realisations-section {
  padding: 100px 100px 80px;
  background: #000;
  color: #fff;
}

.realisations-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.realisations-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.realisations-header p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Grid */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 0 auto;
}

/* Item */
.realisation-item {
  position: relative;
  overflow: hidden;
  
}

.realisation-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image */
.realisation-item img {
  width: 192px;
  height: auto;
  display: block;
  border-radius: 18px;
  margin: 0 auto;
  transition: transform 0.6s ease;
}

/* Caption overlay */
.realisation-item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15)
  );
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
  margin: 0 auto;
}

.realisation-item h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}

/* Hover */
.realisation-item:hover img {
  transform: scale(1.05);
}

.realisation-item:hover figcaption {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .realisations-section {
    padding: 80px 40px 60px;
  }

  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .realisations-section {
    padding: 60px 20px 50px;
  }

  .realisations-header h2 {
    font-size: 2rem;
  }

  .realisations-grid {
    grid-template-columns: 1fr;
  }

  .realisation-item figcaption {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.4)
    );
  }
}







/******* animating **************/

/* Initial hidden state */
.hero-animate .hero-title
{
  opacity: 0;
  transform: translateX(-80px);
}

.hero-animate .hero-text
 {
  opacity: 0;
  transform: translateX(-90px);
transition: opacity 1.2s ease, transform 1.2s ease;
}


.hero-animate .hero-buttons {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-animate .hero-photo {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

/* Active state */
.hero-animate.show .hero-title
{
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}


.hero-animate.show .hero-text
 {
  opacity: 1;
  transform: translateX(0);

}


.hero-animate.show .hero-buttons {
  opacity: 1;
  transform: translateX(0);
  
}




.hero-animate.show .hero-photo {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.5s ease, transform 1.5s ease;
}



@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}



/* INITIAL STATE */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* ACTIVE STATE */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}




#form-feedback {

  color: white;
}

