/* body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: 'Roboto', sans-serif;
        } */
        .background {
            position: relative;
            height: 100vh;
            color: white;
            overflow: hidden;
        }
        .background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            transform: translate(-50%, -50%);
            background-size: cover;
            filter: brightness(0.5);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            
        }
        .navbar .logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
        }
        .navbar .logo span {
            color: #bfa760;
        }
        .navbar .menu {
            display: flex;
            align-items: center;
        }
        .navbar .menu a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 15px;
        }
        .navbar .menu a:hover {
            text-decoration: underline;
        }
        .navbar .menu .dropdown {
            position: relative;
        }
.navbar .menu .dropdown-content {
    display: none;
    position: absolute;
    background: transparent;
    min-width: 260px; /* increased width */
    white-space: nowrap; /* prevent wrapping */
    z-index: 1;
}
    

.navbar .menu .dropdown-content a {
    color: #fff; /* keep text white */
    padding: 8px 0; /* tighter spacing like your screenshot */
    text-decoration: none;
    display: block;
}

.navbar .menu .dropdown-content a:hover {
    text-decoration: underline; /* match the hover style you want */
    background: none; /* remove hover black */
}

        .navbar .menu .dropdown:hover .dropdown-content {
            display: block;
        }
        .navbar .menu .login {
            margin-right: 15px;
        }
        .navbar .menu .connect-btn {
            background-color: #AEA079;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }



        .content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            margin: 0;
        }
        .content p {
            font-size: 24px;
            margin: 10px 0 30px;
        }
        .content .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .content .buttons a {
            padding: 10px 30px;
            border: 2px solid white;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 21px;
        }
        .content .buttons a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .help-icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: #bfa760;
            color: white;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
        }
        #dynamic-text {
            font-size: 78px; 
            font-family: 'Playfair Display', serif;
            margin: 70;
            white-space: nowrap;   
        }


        /* vision css */
        .vision-container {
            display: flex;
            padding: 112px;
            background-color: #fff;
            color: #564000;
            
        
        }

        
        .vision-left-column {
            width: 50%;
            padding-right: 50px;
        }
        .vision-right-column {
            width: 50%;
            padding-left: 50px;
            border-left: 1px solid #e0e0e0;
        }
        .vision-title {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            font-weight: 700;
            color: #564000;
            margin-bottom: 20px;
        }
        .vision-quote {
            font-family: "Bodoni Moda", Sans-serif;
            font-size: 26px;
            line-height: 1.3em;
            font-weight: 400;
            color: #564000;
            margin-bottom: 20px;
            letter-spacing: 1.2px;
        
        }
        .vision-text {
            font-size: 17px;
            line-height: 1.3em;
            color: #564000;
            font-weight: 400;
        
        }
        .vision-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .vision-stat-item {
            width: 45%;
            margin-bottom: 50px;
        }
        .vision-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 300;
            color: #564000;
            margin-bottom: 10px;
            line-height: 1.5em;
            letter-spacing: -0.8px;
        
        }
        .vision-stat-description {
            font-size: 18px;
            color: #564000;
        }
          

        /* connected companies section  */
    .connected-companies-container {
            display: flex;
            justify-content: space-between;
            padding: 90px;
        }
        
    .connected-companies-left,
    .connected-companies-right {  width: 45%;  }
    .connected-companies-left {  position: relative; }
        
    .connected-companies-left::before {
        content: "Consecution";
        font-family: 'Playfair Display', serif;
        font-size: 202px;
        color: #f0f0f0;
        position: absolute;
        top: -150;
        left: 0;
        z-index: -1;
        white-space: nowrap;
    }
        
    .connected-companies-brands {
        margin-top: 100px;
        transform: translateX(-50px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .connected-companies-brands.visible {
        opacity: 1;
        transform: translateX(0);
    }
        
    .connected-companies-brands h2 {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        color: #a67c52;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
        
    .connected-companies-brand-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }
        
    .connected-companies-brand-item div {
        text-align: center;
        opacity: 0;
        transform: translateY(50px);
        animation: connectedCompaniesSlideUp 1s forwards;
    }
        
    .connected-companies-brand-item div:nth-child(1) {  animation-delay: 0.5s; } 
    .connected-companies-brand-item div:nth-child(2) {  animation-delay: 1s;   }
    .connected-companies-brand-item div:nth-child(3) {  animation-delay: 1.5s; }
    .connected-companies-brand-item div:nth-child(4) {  animation-delay: 2s;   }
        
    .connected-companies-brand-item div h3 {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        margin: 0;
    }
        
    .connected-companies-brand-item div p {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        color: #a67c52;
        margin: 5px 0 0;
    }
        
    .connected-companies-right {
        width: 45%;
        padding-left: 50px;
        border-left: 1px solid #e0e0e0;
        opacity: 0; /* Start hidden */
        transform: translateX(-100%); /* Start off-screen */
        transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transition effects */
    }
        
    .connected-companies-right.visible {
        opacity: 1; /* Fully visible */
        transform: translateX(0); /* Move into view */        
    }
        
    .connected-companies-right h2 {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        color: #a67c52;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
        
    .connected-companies-right blockquote {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        color: #a67c52;
        margin: 0 0 20px;
    }
        
    .connected-companies-right p {
        font-size: 18px;
        line-height: 1.6;
        margin: 0;
    }
        
    @keyframes connectedCompaniesSlideInLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
           transform: translateX(0);
           opacity: 1;
        }
    }
        
    @keyframes connectedCompaniesSlideUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
        
    @keyframes connectedCompaniesSlideInRight {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
        
   

       
       /* Vision left */
    .vision-left-column {
        opacity: 0; /* Start hidden */
        transform: translateY(20px); /* Start slightly lower */
        transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transition effects */
    }
        
    .vision-left-column.visible {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Back to original position */
    }
        
        /* why-us css */
    .why-us-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }    
    .why-us-header {
        text-align: left;
        margin-bottom: 40px;
    }
        
    .why-us-header h1 {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        color: #4a3f2f;
        margin: 0;
    }
        
    .why-us-header p {
        font-size: 16px;
        color: #a58b5c;
        margin: 0;
        margin-bottom: 10px;
    }   
    .why-us-content {
        display: flex;
        align-items: center;
    }    
    
    .text-content { margin-left: 40px;  } 
    .text-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: #a58b5c;
        margin: 0;
        margin-bottom: 20px;
    }
    .text-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }
          
    .why-us {
        font-size: 14px;
        color: #a58b5c;
        margin: 0;
        margin-bottom: 10px;
    }
    
        
    /*why-us2 css  */
    .why-us2-container {
        display: flex;
        align-items: center;
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
    }
    .why-us2-text-content {
        flex: 1;
        margin-right: 40px;
    }
    .why-us2-text-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: #a58b5c;
        margin: 0;
        margin-bottom: 20px;
    }
    .why-us2-text-content p{
        font-size: 18px;
        color: #333;
        line-height: 1.6;
    }
    .why-us2-image-content { flex: 1;  }
    

    .image-wrapper {
       width: 636px;
       height: 504px;
       overflow: hidden;
       flex-shrink: 0;
    }

    #animated-image,
    #animatedImage {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
       border-radius: 8px;
    }


    /* contact css */
    .contact-section {
        background-color: #2E2E2E;
        color: #FFFFFF;
        padding: 50px;
    }
    .contact-container {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }
    .contact-info {  max-width: 500px; }
    .contact-info h1 {
        font-family: 'Playfair Display', serif;
        font-size: 50px;
        margin: 0;
        font-weight: 300;
        line-height: 1.2em;
        letter-spacing: -2px;
    }
    .contact-info p {
        font-size: 16px; 
        line-height: 1.6;
    }
    .contact-info i {  margin-right: 10px; }
    .contact-info .contact-item {
        display: flex;
        align-items: center;
        margin: 10px 0;
    }
    .contact-form {
        max-width: 500px;
        width: 100%;
    }
    .contact-form input, .contact-form textarea {
        width: 96%;
        padding: 15px;
        margin: 10px 0;
        border: none;
        border-radius: 5px;
    }
    .contact-form input[type="submit"] {
        background-color: #BFA980;
        color: #FFFFFF;
        cursor: pointer;
        font-weight: bold;
    }
    .contact-form input[type="submit"]:hover {  background-color: #A68A60; }


     /* slider css */
       .dp-container {
        text-align: center;
        padding: 50px;
    }
    .dp-title {
        font-size: 48px;
        color: #7a5e2a;
        margin-bottom: 20px;
    }
    .dp-view-portfolio {
        font-size: 16px;
        color: #7a5e2a;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 50px;
    }
    .dp-view-portfolio i {  margin-left: 5px;  }
      

    .dp-carousel {
        width: 1250px;
        overflow: hidden;
        margin: auto;
        position: relative;
    }

    .dp-carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .dp-carousel-item {
        flex: 0 0 auto;
        width: 300px;
        margin: 0 10px;
        position: relative;
    }
    
    .dp-carousel-item img {
        width: 300px;
        height: 450px;
        object-fit: cover;
    }

    .dp-carousel-item .dp-description {
        display: flex;
        height: 60px;
        position: absolute;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 0px;
    }

    .dp-carousel-item .dp-description h3 {
        margin: 0;
        font-size: 18px;
    } 

 @media (max-width: 768px) {
  .dp-container {
    padding: 32px 16px;
  }

  .dp-title {
    font-size: 28px;
  }

  .dp-view-portfolio {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .dp-carousel {
    width: 100%;
    padding: 0;
  }

  .dp-carousel-inner {
    transition: transform 0.5s ease-in-out;
  }

  .dp-carousel-item {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
  }

  .dp-carousel-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .dp-carousel-item .dp-description {
    height: 50px;
    font-size: 14px;
  }
  .dp-carousel-item .dp-description h3 {
    font-size: 16px;
  }
}    



    /* footer css */
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #000;
        padding: 20px;
        border-top: 1px solid #b5a265;
        position: relative;
    }
    .footer .left, .footer .right {
        display: flex;
        align-items: center;
    }
    .footer .left i, .footer .right i {
        background-color: #b5a265;
        color: #000;
        border-radius: 50%;
        padding: 10px;
        margin-right: 10px;
        cursor: pointer;
    }
    .footer .right i {
        margin-left: 10px;
        margin-right: 0;
    }
    .footer .text {
        color: #b5a265;
    }
    .contact-icons {
        display: none;
        position: absolute;
        bottom: 60px;
        right: 20px;
        background-color: #111;
        padding: 10px;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: inherit;
        gap: 10px;
    }
    .contact-icons i {
        color: #b5a265;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
            text-align: center;
        }
        .footer .left, .footer .right {
            justify-content: center;
            margin: 10px 0;
        }
        .footer .left i, .footer .right i {
            margin: 0 10px;
        }
    }


    .connected-companies-left::before {
        content: "Consecution";
        font-family: "Playfair Display", serif;
        font-size: 100px; /* Default font size for larger screens */
        color: rgb(240, 240, 240);
        position: absolute;
        top: -120px; /* Default position for larger screens */
        z-index: -1;
        white-space: nowrap;
    }
    
    /* Adjust styles for smaller screens (e.g., mobile devices) */
    @media (max-width: 768px) {
        .connected-companies-left::before {
            font-size: 100px; /* Smaller font size for mobile screens */
            top: -75px; /* Adjusted position for mobile screens */
        }
    }
    
    /* Further adjustments for very small screens */
    @media (max-width: 480px) {
        .connected-companies-left::before {
            font-size: 60px; /* Even smaller font size for very small screens */
            top: -50px; /* Further adjusted position for very small screens */
        }
    }


    /* service section */

.services-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #564000;
  font-family: 'Playfair Display', serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  border-left: 5px solid transparent;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  transform: translateY(-10px);
  background-color: #fcf7e9; /* Soft golden highlight */
  border-left-color: #bfa760;
  box-shadow: 0 8px 20px rgba(191, 167, 96, 0.4);
}

.service-box-inner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.icon-bg {
  background-color: #f2f2f2;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(191, 167, 96, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover .icon-bg {
  background-color: #bfa760;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(191, 167, 96, 0.4);
}

.icon {
  font-size: 28px;
  color: #bfa760;
  transition: color 0.3s ease;
}

.service-box:hover .icon {
  color: white;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.service-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #6a5625;
  margin: 0;
  text-align: center;
}

/* Responsive Layouts */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 15px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-container {
  display: flex;
  width: 100%;
  max-width: 1300px;
  justify-content: space-between;
  align-items: center;
}

.header-nav .nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #bfa760;
}

.connect-button {
  background-color: #bfa760;
  color: black;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.connect-button:hover {
  background-color: white;
  color: #000;
}
