/*bg section images starts*/
.abtsecbg
{
    background-image: url(img/sylph/bg3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
/*bg images css ends*/
h2.abthead {
    font-family: "kalufonia",serif;
    text-align: left;
    margin-top: 0px;
    color: #f3dcc1;
}
img.gallery-img {
    cursor: pointer;
    border: 2px solid #f3dcc1;
}
.img1-center {
    padding: 10px;
}


/* Style for gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    text-align: left;
}

.gallery-img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Modal styles */
.modal1 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.modal1-content {
    max-width: 80%;
    max-height: 80vh;
    margin-top: 8%;
    border-radius: 5px;
}

/* Close button */
.close1 {
    position: absolute;
    top: 100px;
    right: 125px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

/* Navigation buttons */
.prevgal, .nextgal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prevgal { left: 10px; }
.nextgal { right: 10px; }

.prevgal:hover, .nextgal:hover {
    background: rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 767px) {
    .modal1 {
    
    padding-top: 230px;
}
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
}
p.repimg {
    text-align: right;
    margin-top: -30px;
    margin-right: 25px;
    font-size: 10px;
    margin-bottom: 0px;
    color: #fff;
}
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: portrait) {
    .portraitipad {
        display: none !important;
    }
}
@media (min-width: 1920px) and (max-width: 2560px) {
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
}


/*flower bg start*/

.flower-bg-text {
  position: relative;
  z-index: 1;
}

.flower-bg-text::before {

content: "";
  position: absolute;
  top: -200px;
  left: -20px;
  width: 200px;
  height: 100%;
  background: url(./img/sylph/flower2.png) no-repeat center;
  background-size: contain;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
  transform: rotate(60deg);
/*  transform-origin: bottom left;*/
animation: floatFlower 5s ease-in-out infinite;
}

@keyframes floatFlower {
  0%, 100% {
    transform: rotate(60deg) translateY(0);
  }
  50% {
    transform: rotate(65deg) translateY(5px);
  }
}

@media (max-width: 768px) {
  .flower-bg-text::before {
    opacity: 0.15;
    top: -50px;
    width: 80px;
    transform: rotate(40deg);
  }
}
/*.flower-bg-text::before,
.flower-bg-text::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 100%;
  background: url(./img/sylph/flower2.png) no-repeat center;
  background-size: contain;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
  animation: floatFlower 8s ease-in-out infinite;
}

.flower-bg-text::before {
  top: -100px;
  left: -50px;
  transform: rotate(60deg);
}

.flower-bg-text::after {
  top: -100px;
  right: -50px;
  transform: rotate(-60deg) scaleX(-1); 
}

@keyframes floatFlower {
  0%, 100% {
    transform: rotate(60deg) translateY(0);
  }
  50% {
    transform: rotate(62deg) translateY(5px);
  }
}

@keyframes floatFlowerRight {
  0%, 100% {
    transform: rotate(-60deg) scaleX(-1) translateY(0);
  }
  50% {
    transform: rotate(-62deg) scaleX(-1) translateY(5px);
  }
}

.flower-bg-text::after {
  animation: floatFlowerRight 8s ease-in-out infinite;
}

@media (max-width: 768px) {
  .flower-bg-text::before {
    opacity: 0.15;
    top: -50px;
    transform: rotate(40deg);
  }

  .flower-bg-text::after {
    opacity: 0.15;
    top: -50px;
    transform: rotate(-40deg) scaleX(-1);
  }
}*/



.configurations-section {
  position: relative;
  z-index: 1;
}

/* Existing right-side flower */
.configurations-section::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: url(./img/sylph/flower1.png) no-repeat top right;
  background-size: contain;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  transform: rotate(10deg);
  /* animation: floatFlowerRight3 8s ease-in-out infinite; */
}

/* ✅ New left-side flower */
.configurations-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: url(./img/sylph/flower1.png) no-repeat top left;
  background-size: contain;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  transform: scaleX(-1) rotate(15deg); /* Mirror and rotate */
  /* animation: floatFlowerLeft3 8s ease-in-out infinite; */
}

/* Optional: Responsive tweak for left flower */
@media (max-width: 768px) {
  .configurations-section::before {
    top: -40px;
    left: -30px;
    width: 80px;
    height: 180px;
    opacity: 0.15;
    transform: scaleX(-1) rotate(10deg);
  }
}


.Internal-section {
  position: relative;
  z-index: 1;
}

.Internal-section::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: url(./img/sylph/flower4.png) no-repeat top right;
  background-size: contain;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
  transform: rotate(-100deg);
  animation: floatFlowerRight 8s ease-in-out infinite;
}

/* Animation keyframes */
@keyframes floatFlowerRight {
  0%, 100% {
    transform: rotate(-100deg) translateY(0);
  }
  50% {
    transform: rotate(-105deg) translateY(5px);
  }
}

/* Optional: Responsive tweak */
@media (max-width: 768px) {
  .Internal-section::after {
    top: -40px;
    right: -30px;
    width: 80px;
    height: 180px;
    opacity: 0.15;
    transform: rotate(100deg);
  }
}



.floor-bg-text {
  position: relative;
  z-index: 1;
}

.floor-bg-text::before {

content: "";
  position: absolute;
  top: -240px;
  left: -110px;
  width: 400px;
  height: 100%;
  background: url(./img/sylph/flower3.png) no-repeat center;
  background-size: contain;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
animation: floatFlower2 5s ease-in-out infinite;
}

@keyframes floatFlower2 {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(5px);
  }
}

@media (max-width: 768px) {
  .floor-bg-text::before {
    opacity: 0.15;
    top: -50px;
    width: 80px;
  }
}

/*flower bg end*/


.container1 {
    width: 100%;
    overflow: hidden;
    padding-left: 31px;
}

@media only screen and (max-width: 767px) {
.container1 {
    padding: 20px;
}
}
/*sidebar widgets start*/
.sidebar-widgets {
    position: fixed;
    z-index: 99999999999;
    bottom: 15%;
    right: 15px;
    background: linear-gradient(90deg, #f3dcc1 10%, #bb977a 100%);
    padding: 10px 10px;
    border-radius: 38px;
}

.sidebar-widgets ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    border: 1px solid #68142c;
    text-align: center;
    border-radius: 38px;
}

.sidebar-widgets ul li button,
.sidebar-widgets ul li a {
    color: #68142c !important;
    padding: 10px 10px 10px 10px;
    background-color: #0000ff00;
    border: none;
    font-size: 16px;
    outline: none;
}

.sidebar-widgets ul li button i,
.sidebar-widgets ul li a i {
    margin-right: 5px;
    font-size: 22px;
}

.sidebar-widgets ul li button span,
.sidebar-widgets ul li a span {
    color: #68142c;
    font-size: 10px;
    display: block;
}