/*Navbar */
 .navbar {
      background-color: #fff;
      padding: 0.8rem 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .navbar-brand img {
      height: 55px;
    }

    .navbar-nav .nav-link {
      color: #1f2937;
      font-weight: bold;
      margin-left: 1rem;
      transition: color 0.3s;
    }
    .navbar-nav .nav-link:hover {
      color: #D66E5A; /* Your hover color */
    }

    .navbar-toggler {
      border: none;
    }
    .navbar-toggler:focus {
      box-shadow: none;
    }

    /* Modern dropdown */
    .dropdown-menu {
      border-radius: 12px;
      border: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 0.5rem 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      padding: 12px 20px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      color: #1f2937;
      border-radius: 8px;
    }

    /* Hover color updated */
    .dropdown-item:hover {
      background-color: #D66E5A !important;
      color: #fff !important;
    }

    .dropdown-item i {
      font-size: 18px;
    }

    @media (max-width: 991px) {
      .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
      }
      .navbar-nav .nav-link {
        margin-left: 0;
      }
    }
    /************/





/*about us*/
/* Section Titles */
.section-title {
    font-weight: 700;
    font-size: 30px;
}

/* Call Button */
.call-btn {
    background: #2c3839;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
    font-size: 17px;
}
.call-btn:hover {
    background: #455355;
}

/* LEFT IMAGE */
.image-wrap {
    position: relative;
    width: 360px;
    height: 360px;
    margin: auto;
}
.image-wrap img.main-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: rotateLoop 20s linear infinite; /* rotation animation */
}

/* Rotation Animation */
@keyframes rotateLoop {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Desktop leaf decoration */
.left-decor-desktop {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
}

/* Mobile decorations hidden by default */
.left-decor-mobile, .mobile-bottom-right {
    display: none;
}

/* Right Content Decorations */
.text-block {
    position: relative;
}
.dec-top-right {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 80px;
}

/* Responsive */
@media(max-width:767px){
    .image-wrap {
        width: 260px;
        height: 260px;
        margin-bottom: 25px;
    }

    /* Show mobile decorations only */
    .left-decor-mobile {
        display: block;
        position: absolute;
        top: -15px;
        left: -15px;
        width: 50px;
    }
    .mobile-bottom-right {
        display: block;
        position: absolute;
        bottom: -15px;
        right: -15px;
        width: 50px;
    }

    .dec-top-right {
        width: 60px;
    }

    /* Hide desktop decoration on mobile */
    .left-decor-desktop {
        display: none;
    }
}
/**************/



/* menu */
.section-title{
    font-weight:700;
    margin-bottom:40px;
    font-size:42px;
}

/* Card width */
.card-custom{
    border-radius:0;
    padding:40px 15px;
    text-align:center;
    height:380px;
    width:82%;
    margin:auto;
    transition:.3s;
}

/* Reduced side gap */
.col-custom{
    padding:0 3px;
}

/* Inside image zoom */
.card-custom img{
    width:150px;
    transition:transform .4s ease-in-out;
}
.card-custom:hover img{
    transform:scale(1.14);
}

/* Updated Text Sizes */
.card-custom h4{
    font-size:26px;
    font-weight:600;
}
.card-custom p{
    font-size:17px;
}

/* Button text */
.view-more{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    font-size:17px;
}
.view-more:hover{
    color:yellow;
}

/* Mobile view */
@media(max-width:992px){
    .card-custom{
        width:300px;
        height:auto;
        margin-bottom:18px;
 
    }
    .section-title{
        font-size:32px;
    }
}
/************/
    /* RESPONSIVE */
    /* --------------------------------------------- */
    @media(max-width: 992px) {
      .carousel-inners img {
        height: 380px;
      }

      .carousel-control-prev {
        top:350px;
        left: -30px;
      }

      .carousel-control-next {
        right: -30px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        filter: invert(0.5); /* lighter color */
      }

      .decor-right {
        top: -20px;
        right: 0;
        width: 110px;
      }

      .decor-bottom-left {
        width: 110px;
        bottom: -5px;
      }

      .quote-text {
        font-size: 1.8rem;
        line-height: 1.3;
      }
    }
    /**************/

    /*Gallery */
    .gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
     font-weight:700;
    color: #333;
}
.gallery-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #666;
    max-width: 620px;
    margin: auto;
}
.gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}
.col-custom {
    flex: 0 0 calc(30% - 14px);
}
.gallery-item {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
    cursor: zoom-in;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .col-custom {
        flex: 0 0 calc(47% - 14px);
    }
}
/**********/

/*Contact */
/* Image box wrapper */
.image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* Main image */
.left-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Decorative images */
.dec-top-right {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 65px;
    opacity: 0.9;
}

.dec-bottom-left {
    position: absolute;
    bottom: 8px;
    left: -10px;
    width: 70px;
    opacity: 0.9;
}

/* Center text */
.info-box h3 {
    font-weight: 600;
}
.info-box p {
    margin-bottom: 7px;
}

/* Icons styles */
.follow-icons i {
    font-size: 22px;
    margin: 0 7px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.follow-icons i:hover {
    transform: scale(1.25) translateY(-3px);
    opacity: 0.8;
}

/* Map Styling */
.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

/**********/

/*get in touch */
/* Section */
.enquiry-section {
    padding: 60px 0;
    text-align: center;
}

/* Form styling */
.enquiry-form {
    max-width: 900px;
    margin: auto;
}

.enquiry-form .form-control {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 6px;
}

.enquiry-form .form-control::placeholder {
    color: #999;
}

/* Submit button color #3e3542 */
.enquiry-form .btn-submit {
    background: #3e3542;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
}

.enquiry-form .btn-submit:hover {
    opacity: 0.85;
}

/* Horizontal layout on desktop */
@media(min-width: 992px) {
    .form-row {
        display: flex;
        gap: 15px;
    }
    .form-row .col {
        flex: 1;
    }
}

/***********/
/* hero section */
      .hero-section {
      background-color: #1b2a3b;
      color: #fff;
      padding: 80px 0;

    }

    .hero-section .btn-order {
      background-color: #f5e1a4;
      color: #1b2a3b;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
    }
    .hero-section .btn-order:hover {
      background-color: #e0c97c;
    }

    .hero-img-wrapper {
      position: relative;
      max-width: 400px;
      margin: 0 auto;
    }

    .hero-img-wrapper img {
      width: 100%;
      border-radius: 50%;
      object-fit: cover;
      animation: rotate 20s linear infinite;
    }

    .hero-img-wrapper::before {
      content: "";
      position: absolute;
      top: -20px; left: -20px;
      width: calc(100% + 40px);
      height: calc(100% + 40px);
      border: 2px dashed rgba(255,255,255,0.5);
      border-radius: 50%;
      animation: rotateReverse 30s linear infinite;
    }

    .hero-img-wrapper::after {
      content: "";
      position: absolute;
      top: -10px; left: -10px;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 50%;
    }

    @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes rotateReverse { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

    @media (max-width: 991px) {
      .hero-section { text-align: center; }
      .hero-img-wrapper { margin-bottom: 30px; }
      .hero-img-wrapper {
  position: relative;
  max-width: 300px;
  margin: auto;
}
    }

    .hero-img-wrapper {
  position: relative;
  max-width: 400px;
  margin: auto;
}
  
.rotating-circle {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: rotateReverse 30s linear infinite;
  pointer-events: none; /* don't block carousel clicks */
}

.carousel-inner img {
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

    /*********/

    /* footer */
        footer {
      background-color: #1f2937; /* Dark background */
      color: #fff;
      padding: 60px 0 20px;
      font-family: 'Arial', sans-serif;
    }
    footer a {
      color: #fff;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
    .footer-logo {
      font-family: 'Brush Script MT', cursive;
      font-size: 28px;
      margin-bottom: 15px;
    }
    .social-icons a {
      color: #fff;
      margin-right: 10px;
      font-size: 18px;
      display: inline-block;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid #fff;
      transition: all 0.3s ease;
    }
    .social-icons a:hover {
      background-color: #fff;
      color: #1f2937;
    }
    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 15px;
      margin-top: 20px;
      font-size: 14px;
      text-align: center;
    }
    @media (max-width: 768px) {
      .footer-logo {
        margin-bottom: 10px;
      }
      .social-icons a {
        margin: 5px 5px 0 0;
      }
    }

    /************/


/* menu */

        /* Quote Section */
    .quote-section {
      text-align: center;
      padding: 80px 20px;
      max-width: 1000px;
      margin: auto;
      position: relative;
    }

    /* TOP RIGHT decoration */
    .decor-top-right {
      position: absolute;
      right: 10px;
      top: 10px;
      width: 150px;
      opacity: 0.95;
    }

    /* BOTTOM LEFT decoration */
    .decor-bottom-left {
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 130px;
      opacity: 0.95;
    }

    /* ABOVE TEXT decoration */
    .decor-above {
      width: 120px;
      margin: 0 auto 15px;
      display: block;
      opacity: 0.95;
    }

    /* BELOW TEXT decoration */
    .decor-below {
      width: 120px;
      margin: 15px auto 0;
      display: block;
      opacity: 0.95;
    }

    .quote-text {
      font-size: 2.4rem;
      font-weight: 800;
      font-family: 'Poppins', sans-serif;
      line-height: 1.3;
    }

    .view-more-btn {
      background: #ff5421;
      border-radius: 30px;
      padding: 10px 25px;
      color: #fff;
      border: none;
      margin-top: 25px;
    }

    /* Carousel Img */
    .slide-images {
      width: 100%;
      height: 600px;
      object-fit: contain;
    }

    /* Modal no bg */
    .modal-content {
      background: transparent;
      border: none;
    }

    /* Arrows small */
    .slide-prev-btn,
    .slide-next-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 10px;
      border: none;
      background: none;
      z-index: 99;
    }

    .slide-prev-btn {position: relative;top:300px; left: -40px; }
    .slide-next-btn { right: -40px; top:300px;}

    .slide-prev-btn span,
    .slide-next-btn span {
      width: 30px;
      height: 30px;
      filter: invert(1);
    }

    @media (max-width: 992px) {
      .slide-image { height: 350px; }

      .slide-prev-btn { position: relative;top:200px;left: -20px;}
      .slide-next-btn { right: -10px;top:200px; }

      .slide-prev-btn span,
      .slide-next-btn span {
        width: 22px;
        height: 22px;
      }

      .decor-top-right { width: 100px; }
      .decor-bottom-left { width: 90px; }
      .decor-above, .decor-below { width: 90px; }
    }
    /* --------------------------------------------- */


