* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
   --gray-color:  #607586 ;
   --yellow-color: #f19f09;
 }
 
 /* Loader Styles */
.loader-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: black;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 999;
   transition: opacity 1s ease;
}

.loader-content {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.loader-video {
   width: 100vw;
   height: 100vh;
   object-fit: cover;
}

 /* ==================nav=================== */

.logo_img {
   height: 80px;
   width: 80px;
}

.navbar-brand {
   font-weight: bold;
   color: var(--gray-color);
   font-size: 33px;
}

.navbar-nav .nav-link {
   color: #44464A;
   font-weight: 500;
   font-size: 19px;
   margin-right: 20px;
}

.nav-link i {
   margin-right: 3px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
   color: var(--yellow-color);
}

.quick-enquiry {
   background-color: var(--yellow-color);
   color: white;
   font-weight: bold;
   padding: 8px 16px;
   border-radius: 20px;
}

.quick-enquiry:hover {
   background-color: var(--gray-color);
}

/* Custom Dropdown Styling */
.custom-dropdown {
   display: none;
   position: absolute;
   background: white;
   box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
   padding: 10px;
   min-width: 200px;
   border-radius: 0px !important;
   border :none;
}

.nav-item.dropdown:hover .custom-dropdown {
   display: block;
}

.custom-dropdown .dropdown-item {
   display: flex;
   align-items: center;
   padding: 10px;
   color: #44464A;
   font-size: 16px;
   transition: background 0.3s;
}

.custom-dropdown .dropdown-item i {
   margin-right: 10px;
   font-size: 18px;
   color: var(--yellow-color);
}

.custom-dropdown .dropdown-item:hover {
   background: var(--yellow-color);
   color: white;
}
.dropdown-item:hover  i{
color: white;
}
/*================= slider section================= */

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: transparent; 
   }

.hero-section {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hero-section.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.hero-text span {
    color: var(--yellow-color);
}

.hero-text p {
   color: var(--gray-color);
   margin-top: 15px;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons .btn {
    margin-right: 10px;
    border-radius: 20px;
    font-weight: bold;
    background: var(--yellow-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}
.hero-buttons .btn:hover {
    background: var(--gray-color);
    color: black;
}

.hero-image {
    width: 400px;
    height: 400px;
     display: flex;
    align-items: center;
    justify-content: center;
 }

.hero-image img {
    width: 100%;
     object-fit: cover;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    transform: scale(0.9);
    opacity: 0;

}

.hero-section.active .hero-image img {
    transform: scale(1.1);
    opacity: 1;
}


/* ======about us===== */


/* About Section Styles */
.about-section {
   padding-top: 30px  ;
   padding-bottom: 20px;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('./image/background.jpg');
   background-size: cover;
   background-attachment: fixed;
   color: #fff;
}

.section-title {
   font-size: 3rem;
   font-weight: bold;
   color: #f19f09;
   text-transform: uppercase;
   letter-spacing: 3px;
   position: relative;
   overflow: hidden;
   animation: slide-in 1s ease-out;
}

.section-subtitle {
   font-size: 1.2rem;
   color: #fff;
   margin-bottom: 40px;
   opacity: 0.8;
}

.about-image {
   overflow: hidden;
   border-radius: 20px;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img {
   width: 100%;
   border-radius: 20px;
   transition: transform 0.4s ease;
   filter: brightness(80%);
}

.about-image:hover {
   transform: scale(1.05);
}



.about-text {
    backdrop-filter: blur(10px);
   padding: 10px;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.who-title {
   font-size: 2.5rem;
   font-weight: bold;
   background: linear-gradient(45deg, #f19f09, #ffb347);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.about-text p {
   font-size: 1rem;
   color: #ddd;
   margin-bottom: 15px;
   line-height: 1.6;
}

.about-highlights {
   margin-top: 20px;
}

.highlight {
   display: flex;
   align-items: center;
    background: rgba(0, 0, 0, 0.3);
   padding: 10px;
   border-radius: 10px;
   transition: background 0.3s;
}

.highlight:hover {
   background: rgba(0, 0, 0, 0.6);
}

.highlight i {
   font-size: 30px;
   color: #f19f09;
   margin-right: 15px;
   transition: transform 0.3s;
}

.highlight:hover i {
   transform: rotate(15deg);
}

.highlight h5 {
   font-size: 1.3rem;
   font-weight: bold;
   color: #fff;
}

.highlight p {
   font-size: 0.9rem;
   color: #ccc;
}

/* Animation Keyframes */
@keyframes slide-in {
   from {
       opacity: 0;
       transform: translateY(-30px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}
/* Image Animation */
.animated-image {
   overflow: hidden;
   border-radius: 20px;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
   position: relative;
   height: 400px; /* Set a fixed height for the container */
}

.animated-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
   animation: topBottom 6s infinite alternate;
}

/* Keyframes for top-to-bottom animation */
@keyframes topBottom {
   0% {
       transform: translateY(-10%);
   }
   50% {
       transform: translateY(10%);
   }
   100% {
       transform: translateY(-10%);
   }
}

/* =================services============== */

.services-section {
   padding-top: 30px;
   padding-bottom: 0px;
    background-color: transparent;
}

.services-tabs .nav-link {
   border: none;
   font-size: 18px;
   font-weight: bold;
   color: #333;
   background: #fff;
   padding: 15px 20px;
   border-radius: 10px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   margin: 5px;
}

.services-tabs .nav-link.active {
   background:var(--gray-color);
   color: #fff;
}

.service-content {
   display: flex;
   align-items: center;
   background: #fff;
   padding: 20px;
   border-radius: 10px;
   max-width: 800px;  
   margin: 0 auto;
}

.service-image img {
   width: 500px;
   height: 400px;
   max-height: 250px;
   max-width: 250px;
   border-radius: 10px;
}

.service-text {
   padding-left: 20px;
}

.service-text h2 {
   font-size: 20px;
   color: #000;
   font-weight: bold;
}

.service-text p {
   font-size: 14px;
   color: #666;
   margin-bottom: 15px;
}

.btn-learn {
   background:  #f19f09;
   color: #fff;
   padding: 10px 20px;
   border-radius: 5px;
   text-decoration: none;
   display: inline-block;
   margin-top: 10px;
}
.paperplane {
   width: 50px;
   height: auto;
   position: absolute;
   bottom: -50px;
   left: 10%;
   z-index: 10;
   transform: rotate(10deg);     
}

.flyFast {
   animation: flyUp 3s forwards;
}

.flySlow {
   animation: flyUp 5s forwards;
}

@keyframes flyUp {
   0% {
       bottom: -50px;
       left: 10%;
       opacity: 0;
   }
   30% {
       opacity: 1;
   }
   70% {
       opacity: 1;
   }
   100% {
      bottom: calc(100% - 50px);  
      left: 85%;
      opacity: 0;
   }
}
@media (max-width: 576px) {
   .service-content {
       flex-direction: column;
       text-align: center;
   }
   
   .service-image img {
       max-width: 80%;
   }
}
/* End Effect Styles */
.endEffect {
   position: absolute;
   top: 5%;
   left: 85%;
   width: 30px;
   height: 30px;
   background: radial-gradient(circle, black, transparent);
   border-radius: 50%;
   animation: popEffect 1s forwards;
   z-index: 9999;
}
/* Mobile Responsive Styles */
@media (max-width: 576px) {
   .services-tabs .nav-link {
       font-size: 14px;
       padding: 10px 15px;
   }

   .service-content {
       flex-direction: column;
       text-align: center;
   }
   
   .service-image img {
       max-width: 80%;
   }
   
   .service-text {
       padding-left: 0;
   }

   .btn-learn {
       font-size: 12px;
       padding: 8px 15px;
   }
}

@keyframes popEffect {
   0% {
      transform: scale(0);
      opacity: 0;
   }
   50% {
      transform: scale(1.5);
      opacity: 1;
   }
   100% {
      transform: scale(2);
      opacity: 0;
   }
}

/* =================features================== */
.animated-boxes {
    margin: 100px 0px;
 }   
 
 .feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: solid 2px ;
 }
 
 .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
 }
 
 .feature-box i {
    font-size: 50px;
    color: #4caf50;
    animation: float 3s infinite ease-in-out;
    transition: color 0.3s;
 }
 
 .feature-box:hover i {
    color: #81c784;
 }
 
 .feature-box h4 {
    color: #f19f09;
    margin-top: 15px;
    font-size: 24px;
    transition: color 0.3s;
 }
 
 .feature-box:hover h4 {
    color: #ffca28;
 }
 
 .feature-box p {
    color: #e0e0e0;
 }
 
 @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
 }
 
/* ============Work progress================== */
.work-process {
background-color: transparent;
padding-top: 50px  !important;
padding-bottom: 70px;
margin: 50px 0px;
}

.section-title {
   font-size: 28px;
   font-weight: bold;
   margin-bottom: 10px;
   color: var(--yellow-color) ;
}

.section-subtitle {
   font-size: 16px;
   color: white;
   margin-bottom: 40px;
   padding-bottom: 20px;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.step {
   text-align: center;
   margin-bottom: 20px;
   position: relative;
}



.circle:hover {
   transform: scale(1.1);
}

.step-title {
   font-size: 14px;
   font-weight: 600;
   color: white;
   margin-top: 20px; 
}

@media (max-width: 768px) {
   .circle {
       width: 40px;
       height: 40px;
       line-height: 40px;
       font-size: 16px;
   }

   .step-title {
       font-size: 12px;
   }
}
/* Keyframes for Animation */
@keyframes fadeInUp {
   0% {
       opacity: 0;
       transform: translateY(30px);
   }
   100% {
       opacity: 1;
       transform: translateY(0);
   }
}

@keyframes bounce {
   0%, 20%, 50%, 80%, 100% {
       transform: translateY(0);
   }
   40% {
       transform: translateY(-15px);
   }
   60% {
       transform: translateY(-10px);
   }
}

/* Applying Animation to Each Circle */
.step:nth-child(1) .circle {
   animation: fadeInUp 1s ease-in-out;
}

.step:nth-child(2) .circle {
   animation: fadeInUp 1s 0.2s ease-in-out;
}

.step:nth-child(3) .circle {
   animation: fadeInUp 1s 0.4s ease-in-out;
}

.step:nth-child(4) .circle {
   animation: fadeInUp 1s 0.6s ease-in-out;
}

.step:nth-child(5) .circle {
   animation: fadeInUp 1s 0.8s ease-in-out;
}

/* Bounce Effect on Hover */
.circle:hover {
   animation: bounce 1s infinite;
}
/* Initial State for Animation */
.reveal-on-scroll {
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.6s ease;
}

/* Animation when Element is Visible */
.reveal-on-scroll.active {
   opacity: 1;
   transform: translateY(0);
}
.circle {
   width: 50px;
   height: 50px;
   line-height: 50px;
   border-radius: 50%;
   color: #fff;
   font-size: 18px;
   font-weight: bold;
   display: inline-block;
   text-align: center;
   margin-bottom: 10px;
   transition: transform 0.2s ease-in-out;
   position: relative;
}

/* Circle 1 - Pink */
.step:nth-child(1) .circle::before {
   content: "";
   position: absolute;
   top: -10px;
   left: -10px;
   width: 70px;
   height: 70px;
   border: 3px dotted #ff4f81;
   border-radius: 50%;
   animation: rotate 3s linear infinite;
}

/* Circle 2 - Yellow */
.step:nth-child(2) .circle::before {
   content: "";
   position: absolute;
   top: -10px;
   left: -10px;
   width: 70px;
   height: 70px;
   border: 3px dotted #fbbc05;
   border-radius: 50%;
   animation: rotate 3s linear infinite;
}

/* Circle 3 - Red */
.step:nth-child(3) .circle::before {
   content: "";
   position: absolute;
   top: -10px;
   left: -10px;
   width: 70px;
   height: 70px;
   border: 3px dotted #ff6b6b;
   border-radius: 50%;
   animation: rotate 3s linear infinite;
}

/* Circle 4 - Green */
.step:nth-child(4) .circle::before {
   content: "";
   position: absolute;
   top: -10px;
   left: -10px;
   width: 70px;
   height: 70px;
   border: 3px dotted #28b463;
   border-radius: 50%;
   animation: rotate 3s linear infinite;
}

/* Circle 5 - Blue */
.step:nth-child(5) .circle::before {
   content: "";
   position: absolute;
   top: -10px;
   left: -10px;
   width: 70px;
   height: 70px;
   border: 3px dotted #6366f1;
   border-radius: 50%;
   animation: rotate 3s linear infinite;
}

/* Animation Keyframes */
@keyframes rotate {
   0% {
       transform: rotate(0deg);
   }
   100% {
       transform: rotate(360deg);
   }
}

/* ===================footer================= */
.footer {
     color: #333;
}

.footer h5 {
   font-weight: bold;
   margin-bottom: 15px;
}

.footer p {
   font-size: 14px;
   margin-bottom: 10px;
}

/* Social Media Icons */
.footer .social-icon {
   font-size: 20px;
   margin-right: 10px;
   color: var(--gray-color);
   transition: color 0.3s ease-in-out;
}

.footer .social-icon:hover {
   color: var(--yellow-color);
}

/* Email Subscription */
.footer .input-group {
   max-width: 280px;
   margin: auto;
}

.footer .input-group .form-control {
   border-radius: 5px 0 0 5px;
}

.footer .input-group .btn {
   border-radius: 0 5px 5px 0;
}
.footer-contect p:hover{
   color:var(--yellow-color) ;
   cursor: pointer;
}
/* Responsive Spacing */
@media (max-width: 768px) {
   .footer .input-group {
       max-width: 100%;
   }
   
   .footer .btn {
       width: 100%;
   }

   .footer .social-icons {
       justify-content: center;
   }
}
/* ===============pop up============== */
.popup-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   display: none;
   justify-content: center;
   align-items: center;
   z-index: 1000;
   backdrop-filter: blur(5px); /* Blur effect */
}

/* Popup Box */
.popup-content {
   background: #fff;
   padding: 30px;
   border-radius: 12px;
   width: 500px;
   text-align: center;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   position: relative;
   animation: popupFadeIn 0.3s ease-in-out;
}

/* Close Button */
.popup-content .close-btn , .closebtn{
   position: absolute;
   top: 15px;
   right: 20px;
   font-size: 24px;
   cursor: pointer;
   color: black;
   transition: 0.3s;
}

.popup-content .close-btn:hover {
   color:  var(--gray-color);
}
.popup-content .closebtn:hover {
    color:  var(--gray-color);
 }
/* Form Inputs */
.popform input,
.popform textarea {
   width: 100%;
   margin: 12px 0;
   padding: 12px;
   border: 2px solid #ddd;
   border-radius: 8px;
   font-size: 16px;
   transition: border-color 0.3s;
}

.popform input:focus,
.popform textarea:focus {
   border-color: var(--gray-color);
   outline: none;
}

/* Submit Button */
.popbtn {
   background: var(--yellow-color);
   color: white;
   border: none;
   padding: 14px;
   cursor: pointer;
   width: 100%;
   border-radius: 8px;
   font-size: 18px;
   font-weight: bold;
   transition: 0.3s;
}

.popbtn:hover {
   background: var(--gray-color);
}

/* Animation */
@keyframes popupFadeIn {
   from {
       transform: translateY(-20px);
       opacity: 0;
   }
   to {
       transform: translateY(0);
       opacity: 1;
   }
}

/* Responsive Design */
@media (max-width: 1200px) {
   .popup-content {
       width: 60%;
       padding: 25px;
   }
}

@media (max-width: 992px) {
   .popup-content {
       width: 70%;
       padding: 25px;
   }
}

@media (max-width: 768px) {
   .popup-content {
       width: 80%;
       padding: 20px;
   }
}

@media (max-width: 576px) {
   .popup-content {
       width: 90%;
       padding: 15px;
   }

   .popup-content h2 {
       font-size: 24px;
   }

   .popform input,
   .popform textarea {
       font-size: 14px;
       padding: 10px;
   }

   .popbtn {
       font-size: 16px;
       padding: 12px;
   }
}
@media (max-width: 425px) {
   .popup-content {
       width: 95%;
       padding: 10px;
   }

   .popup-content h2 {
       font-size: 20px;
   }

   .popup-content p {
       font-size: 14px;
   }

   .popform input,
   .popform textarea {
       font-size: 14px;
       padding: 8px;
   }

   .popbtn {
       font-size: 14px;
       padding: 10px;
   }
}

@media (max-width: 375px) {
   .popup-content {
       width: 98%;
       padding: 8px;
   }

   .popup-content h2 {
       font-size: 18px;
   }

   .popform input,
   .popform textarea {
       font-size: 13px;
       padding: 6px;
   }

   .popbtn {
       font-size: 13px;
       padding: 8px;
   }
}

@media (max-width: 320px) {
   .popup-content {
       width: 100%;
       padding: 5px;
   }

   .popup-content h2 {
       font-size: 16px;
   }

   .popup-content p {
       font-size: 12px;
   }

   .popform input,
   .popform textarea {
       font-size: 12px;
       padding: 5px;
   }

   .popbtn {
       font-size: 12px;
       padding: 6px;
   }
}

/* =======protfolio================ */

#portfolio {
   padding: 60px 0;
   background-color: rgba(0, 0, 0 , 0.5);
}

#portfolio h2 {
   font-size: 2.5rem;
   font-weight: bold;
   text-align: center;
   color:  var(--yellow-color);
    margin-bottom: 40px;
}

.portfolio-item {
   margin-bottom: 30px;
}

.card {
   border: none;
   transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
   height: 200px;
   object-fit: cover;
   border-top-left-radius: 8px;
   border-top-right-radius: 8px;
}

.card-body {
   text-align: center;
}

.card-title {
   font-size: 1.3rem;
   font-weight: 600;
   color: #222;
   margin-bottom: 10px;
}

.card-text {
   font-size: 1rem;
   color: #555;
}

.btn-primary {
   background-color: #f19f09;
   border: none;
   transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
   background-color: #d88c07;
}
.portfolio-section {
   padding: 50px 0;
}
.card img {
   object-fit: cover;
   height: 200px;
}

/* 

.portfolio-section {
   text-align: center;
   padding: 50px 0px;
   margin-bottom: 40px; 
}
.portfolio-filters {
   margin-bottom: 20px;
}
.filter-btn {
   margin: 5px;
   padding: 10px 20px;
   border: none;
   cursor: pointer;
   background: var(--gray-color) ;
   color: white;
   border-radius: 5px;
   transition: 0.3s;
}
.filter-btn:hover, .filter-btn.active {
   background:var(--yellow-color);
}
.portfolio-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 20px;
}
 
.slider-track {
   display: flex;
   flex-wrap: nowrap;
   width: max-content;
   animation: scroll 15s linear infinite;
}

.portfolio-item {
 
    min-width: 300px;
    box-sizing: border-box;
    padding-right: 30px;

}

.portfolio-item img {
    width: 100%;
    border-radius: 10px;
}
 .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    margin-top: 40px;

}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.slider-track {
    display: flex;
    width: calc(300px * 6);
    animation: scroll 15s linear infinite;
}

.hidden {
    display: none !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.portfolio-grid {
   overflow: hidden;
   position: relative;
   width: 100%;
} */
/* ======================top-button======================= */
.back-to-top-btn {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background-color: #f19f09;
   color: white;
   border: none;
   padding: 10px 15px;
   border-radius: 50%;
   cursor: pointer;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   opacity: 0;
   transition: opacity 0.3s;
   z-index: 999;
}

.back-to-top-btn.show {
   opacity: 1;
}

.topplain {
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 50px;
   transition: transform 2s ease, opacity 0.3s;
   opacity: 0;
   z-index: 998;
}

 
 

.pointer {
   position: fixed;
   top: 0;
   left: 0;
   width: 20px;
   height: 20px;
   background: #f19f09 !important;
   border-radius: 50%;
   pointer-events: none;
   transform: translate(-50%, -50%);
   z-index: 9999;
}

.pointer::after {
   content: '';
   position: absolute;
   top: -5px;
   left: -5px;
   width: 30px;
   height: 30px;
   border: 1px solid #fff;
   border-radius: 50%;
   pointer-events: none;
}

.ripple {
   position: fixed;
   border-radius: 50%;
   border: 2px solid #f19f09;
   transform: translate(-50%, -50%);
   pointer-events: none;
   animation: ripple-effect 0.6s ease-out;
   z-index: 9998;
}

@keyframes ripple-effect {
   0% {
      width: 0;
      height: 0;
      opacity: 0.6;
   }
   100% {
      width: 100px;
      height: 100px;
      opacity: 0;
   }
}
