/********** Template CSS **********/
h1{
    text-shadow: 0px 1px 3px rgb(252, 0, 0);
}
h2,h3,h4,h5{
    text-shadow: 0px 2px 0px rgb(255, 215, 0);
	font-size: 22px; 
}
/***hover***/
/* Hide default cursor */

/* Diamond Cursor */
/* Hide default cursor for whole page */
    /* Page முழுவதும் cursor hide */
/* MOBILE FIX: Clean, Perfect Overlay & Proper Spacing */
@media (max-width: 768px) {

    /* Set proper height for the carousel image */
    #header-carousel .carousel-item {
        min-height: 520px !important; 
    }

    #header-carousel .carousel-item img {
        height: 520px !important;
        width: 100%;
        object-fit: cover;
    }

    /* Overlay + Content position */
    #header-carousel .carousel-caption {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;

        padding-top: 160px !important;   /* This pushes content DOWN (fixes your issue) */

        background: rgba(0, 0, 0, 0.55);
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* content starts lower */
        align-items: center;
        text-align: center;
    }

    /* Heading */
    #header-carousel h1 {
        font-size: 20px !important;
        line-height: 26px !important;
        font-weight: 600;
    }

    /* Sub heading */
    #header-carousel h5 {
        font-size: 14px !important;
        margin-bottom: 10px;
    }

    /* Paragraph */
    #header-carousel p {
        font-size: 18px !important;
        line-height: 20px !important;
        width: 90%;
        margin: 10px auto;
    }

    /* Button */
    #header-carousel .btn {
        padding: 8px 18px !important;
        font-size: 12px !important;
        margin-top: 10px;
    }

    /* Remove big padding on title wrapper */
    .title.mx-5.px-5 {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* =========================
   Common style for all devices
   ========================= */
.side-gif {
    position: fixed;
    height: auto;
    pointer-events: none;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

/* LEFT GIF — always vertically centered */
.gif-left {
    top: 50%;
    transform: translateY(-50%);
}

/* RIGHT GIF — always vertically centered */
.gif-right {
    top: 50%;
    transform: translateY(-50%);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* =========================
   Ultra-Wide Desktop / Laptop (>1440px)
   ========================= */
@media (min-width: 1440px) {
    .side-gif {
        width: 300px; /* large size */
    }
    .gif-left { left: 10px; }
    .gif-right { right: 10px; }
}

/* Desktop / Laptop (992px - 1439px) */
@media (min-width: 992px) and (max-width: 1439px) {
    .side-gif {
        width: 250px;
    }
    .gif-left { left: 10px; }
    .gif-right { right: 10px; }
}

/* Tablet (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .side-gif {
        width: 180px;
    }
    .gif-left { left: 5px; }
    .gif-right { right: 5px; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .side-gif {
        width: 120px;
    }
    .gif-left { left: 5px; }
    .gif-right { right: 5px; }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .side-gif {
        width: 70px;
    }
    .gif-left { left: 5px; }
    .gif-right { right: 5px; }
}


/* Diamond cursor */
/* Diamond cursor */
#diamond-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid goldenrod;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 9999;
    background-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px goldenrod, 0 0 20px gold, 0 0 30px yellow;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* footer icon  */
.btn-lg-square {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;

    border-radius: 50% !important;
    padding: 0 !important;

    display: flex;
    justify-content: center;
    align-items: center;

    line-height: 0 !important;
}
@media (max-width: 480px) {
    .btn-lg-square {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Letter hover zoom */
.letter {
    display: inline-block;
    transition: transform 0.2s ease;
}

.letter:hover {
    transform: scale(1.0);
    color: gold; /* optional: letter color change */
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

h2 {
    font-size: clamp(1.8rem, 2vw + 1rem, 3.2rem);
}

h3 {
    font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2.6rem);
}

p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.4rem);
}

@media (max-width: 768px) {
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.9rem; }
    p  { font-size: 1.2rem; }
}


/* Only devices with NO hover (mobile/touch) */
@media (hover: none) {
    .letter:hover {
        transform: none !important;
        color: inherit !important;
        transition: none !important;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 400;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}

/* all font style  */
* {
    font-family: 'Poppins', 'Inter', sans-serif;
}
/* Default (Laptop / Windows / Desktop) */
div h1 {
    font-size: 50px;
    font-weight: 600;
}

div h2, div h3, div h4 {
    font-size: 24px;
    font-weight: 200;
    
}

div h5 {
    font-size: 20px;
    font-weight: 200;
}

div p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}
/* Mobile (0px – 767px) */
@media (max-width: 767px) {

    div h1 { font-size: 32px; }
    div h2, div h3, div h4 { font-size: 28px; }
    div h5 { font-size: 24px; }
    
    div p {
        font-size: 18px;
        line-height: 1.5;
    }
}
/* Tablet (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    div h1 { font-size: 48px; }
    div h2, div h3, div h4 { font-size: 30px; }
    div h5 { font-size: 34px; }
    
    div p {
        font-size: 22px;
        line-height: 1.5;
    }
}
/* Ultra-Wide Screens (1440px & above) */
@media (min-width: 1440px) {

    div h1 { font-size: 50px; }
    div h2, div h3, div h4 { font-size: 25px; }
    div h5 { font-size: 22px; }
    
    div p {
        font-size: 20px;
    }
}

/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
/* .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} */
/* Full overlay with dark background */
/* Desktop – no change needed */
#header-carousel .carousel-caption {
    padding: 120px 60px;
}

/* Mobile View */
/* MOBILE ONLY */
/* MOBILE FIX: Clean, Perfect Overlay & Proper Spacing */
@media (max-width: 768px) {

    /* Set proper height for the carousel image */
   #header-carousel .carousel-caption {
        padding: 20px 15px !important;
	    
    }

    #header-carousel .carousel-item img {
        height: 520px !important;
        width: 100%;
        object-fit: cover;
    }

    #header-carousel .btn {
        padding: 8px 22px !important;   /* Smaller button */
        font-size: 12px !important;      /* Reduced text size */
        border-width: 1.5px !important;  /* Thinner border */
        border-radius: 6px !important;   /* Smooth edges */
        margin-top: 8px !important;
        text-align: center;
    }

    /* Overlay + Content position */
    #header-carousel .carousel-caption {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;

        padding-top: 160px !important;   /* This pushes content DOWN (fixes your issue) */

        background: rgba(0, 0, 0, 0.55);
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* content starts lower */
        align-items: center;
        text-align: center;
    }

    /* Heading */
        #header-carousel h1 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }


    /* Sub heading */
    #header-carousel h5 {
        font-size: 11px !important;
        margin-top: 35px;
    }

    /* Paragraph */
   #header-carousel p {
        font-size: 11.px !important;
        line-height: 1.4 !important;
        margin-bottom: 5px !important;
    }

    /* Button */
   #header-carousel .btn {
        display: inline-block;
        padding: 8px 18px !important;
        font-size: 10px !important;
        border-width: 1px !important;
        border-radius: 20px !important;
        /* margin-top: 25px !important; */
        margin-bottom: 10px !important;
        position: relative !important;
        z-index: 10 !important;
    }
}

    /* Remove big padding on title wrapper */
    .title.mx-5.px-5 {
        margin: 0 !important;
        padding: 0 !important;
    }




.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}
/* extra */
 .btn{
    background-color: #1E1E1E;
    border-radius: 20px;
    border: 1px solid rgb(236, 11, 131);
    color:rgb(230, 8, 163);
  }

   
    .btn:hover {
      background-color: var(--accent-hover);
      transform: scale(1.03);
      color: #000000;
      background-color: rgb(255, 15, 255);
      
    }
    @keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}
.popup-btn {
    background-color: #1E1E1E;
    border-radius: 20px;
    border: 1px solid rgb(236, 11, 131);
    color: rgb(230, 8, 163);
    padding: 10px 25px;
    font-size: 16px;
    margin: 10px 5px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-btn:hover {
    transform: scale(1.03);
    color: #000000;
    background-color: rgb(255, 15, 255);
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}

    .images {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin: 30px 0;
    }
    .images img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 6px;
      flex: 1 1 400px;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .container {
        padding: 20px;
      }
      .images {
        flex-direction: column;
      }
      .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
       
      }
    }
    
    /* call icon  */
    /* Shake Animation (Responsive & Smooth) */
/* Shake Animation */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

/* Call Button Style */
.call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ff00ff;

  background: #020202;
  color: #ff00ff;
  font-size: 32px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  transition: 0.3s ease;
  z-index: 9999;
  text-decoration: none; /* remove underline */
}

/* Hover = full pink + shake */
.call-button:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  transform: scale(1.15);
  box-shadow: 0 0 20px #FFD700;
}

.call-button:hover i {
  color: #000000;
  animation: shake 0.5s ease-in-out infinite;
}

/* Icon normal state */
.call-button i {
  transition: 0.3s ease;
}

/* Responsive sizes */
@media (max-width: 768px) {
  .call-button {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .call-button {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
.popup-btn {
    background-color: #1E1E1E;               /* Default background */
    border-radius: 20px;
    border: 1px solid rgb(236, 11, 131);
    color: #ffffff;                          /* White text for good readability */
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

/* HOVER EFFECT – attractive neon glow */
.popup-btn:hover {
    background-color: rgb(255, 15, 255);     /* Neon pink background */
    color: #000000;                          /* Dark text on hover */
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 15, 255, 0.7);
}

/* Close button text color */
.popup-close {
    color: #c80aee; 
}

/* ---------- RESPONSIVE BUTTONS ---------- */
@media (max-width: 768px) { /* Tablets */
    .popup-btn {
        font-size: 15px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) { /* Mobiles */
    .popup-btn {
        font-size: 14px;
        padding: 8px 20px;
        border-radius: 16px;
    }
}


/* Shake Animation */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

/* WhatsApp Button */
.whatsapp-left-fixed {
  position: fixed;
  bottom: 30px;
  left: 30px;

  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ff00ff;

  background: #020202;        /* black background */
  color: #ff00ff;             /* WhatsApp icon color */
  font-size: 32px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  transition: 0.3s ease;
  z-index: 9999;
}

/* Hover = full pink + icon black + shake */
.whatsapp-left-fixed:hover {
  background-color: #FFD700;   /* Full pink circle */
  border-color: #FFD700;
  transform: scale(1.15);
  box-shadow: 0 0 20px #FFD700;
}

.whatsapp-left-fixed:hover i {
  color: #000000;              /* Icon turns black */
  animation: shake 0.5s ease-in-out infinite;  /* Shake on hover */
}

/* Normal icon */
.whatsapp-left-fixed i {
  transition: 0.3s ease;
}

/* Responsive sizes */
@media (max-width: 768px) {
  .whatsapp-left-fixed {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-left-fixed {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
/* =========================
   Mobile (≤576px)
   ========================= */
@media (max-width: 576px) {
    #header-carousel .carousel-caption h1 { font-size: 2.5rem; }
    #header-carousel .carousel-caption h2 { font-size: 2rem; }
    #header-carousel .carousel-caption h3 { font-size: 1.8rem; }
    #header-carousel .carousel-caption h4 { font-size: 1.6rem; }
    #header-carousel .carousel-caption h5 { font-size: 11px; }
    #header-carousel .carousel-caption p { font-size: 1rem; line-height: 1.3; }
    #header-carousel .carousel-caption .btn { font-size: 0.95rem; }
}

/* =========================
   Tablet (577px - 991px)
   ========================= */
@media (min-width: 577px) and (max-width: 991px) {
    #header-carousel .carousel-caption h1 { font-size: 3.5rem; }
    #header-carousel .carousel-caption h2 { font-size: 3rem; }
    #header-carousel .carousel-caption h3 { font-size: 2.5rem; }
    #header-carousel .carousel-caption h4 { font-size: 2rem; }
    #header-carousel .carousel-caption h5 { font-size: 1.8rem; }
    #header-carousel .carousel-caption p { font-size: 1.1rem; line-height: 1.4; max-width: 1100px; margin: 0 auto; }
    #header-carousel .carousel-caption .btn { font-size: 1rem; margin-top: 15px; }
}

/* =========================
   Laptop/Desktop (992px - 1439px)
   ========================= */
@media (min-width: 992px)  {
    #header-carousel .carousel-caption h1 { font-size: 5rem; }
    #header-carousel .carousel-caption h2 { font-size: 4rem; }
    #header-carousel .carousel-caption h3 { font-size: 3rem; }
    #header-carousel .carousel-caption h4 { font-size: 2.5rem; }
    #header-carousel .carousel-caption h5 { font-size: 2rem; }
    #header-carousel .carousel-caption p { font-size: 1.3rem; line-height: 1.5; max-width: 900px; margin: 0 auto; }
    #header-carousel .carousel-caption .btn { font-size: 1.2rem; margin-top: 20px; }
}

/* =========================
