:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

h1, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
 h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}
section#about h4.text-primary {
    color: #000 !important;
}
#about .text-center {
    text-align: center !important;
    border: dashed 1px #bfb8b8a3;
    padding: 14px 0;
}
.navbar-brand {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}
.lead {
    font-size: 1.25rem;
    font-weight: 600 !important;
}
ul.navbar-nav.ms-auto a {
    color: #000;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #faf6f5 !important;
    z-index: 1030;
}
/* Hero Slider Styles */
.hero-slider {
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel {
    height: 650px;
    width: 100%;
}
a.navbar-brand i {
    color: #d4af37 !important;
}
.hero-slider .carousel-item {
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-slider .carousel-item:nth-child(1) {
    background-image: url('images/slider03.jpg');
}

.hero-slider .carousel-item:nth-child(2) {
    background-image: url('images/slider05.jpg');
}

.hero-slider .carousel-item:nth-child(3) {
    background-image: url('images/slider02.jpg');
}

.hero-slider .carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 15px;
}

.hero-slider .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.7);
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    z-index: 3;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.section-padding {
    padding: 80px 0;
}
.carousel-content a.btn.btn-outline-light.btn-lg {
    border-radius: 999px;
}
.contact-info-card {
    min-height: 316px;
}
a.navbar-brand img {
    width: 53%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  border: none;
  border-bottom: 2px solid rgb(128, 126, 126);
  background: transparent;
  outline: none;
  width: 100%;
  text-transform: capitalize;
  padding: 1rem 0.4rem;
}
.aside {
  background-image: linear-gradient(
    to left bottom,
    #051937,
    #002350,
    #002d69,
    #003684,
    #01409f
  );
  animation: animateClr 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99);
  background-size: 400%;
}

@keyframes animateClr {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

ion-icon:not([name="logo-codepen"]) {
  border: 1px solid currentColor;
  border-radius: 20%;
  padding: 1rem;
}



.sticky-social {
    position: fixed;
    bottom: 30px;
    padding: 0px;
    z-index: 999;
    margin-left: -10px;
    display: flex;
    flex-direction: column;
  }
  .sticky-social ul {
    list-style: none;
    transform: translateX(-260px);
  }
  .sticky-social ul li {
    display: block;
    padding: 8px;
    font-size: 21px;
    width: 300px;
    border-radius: 0px 50px 50px 0px;
    transition: all 1s;
    text-align: right;
  }
  
  .sticky-social ul li:hover {
    transform: translateX(120px);
    box-shadow: 2px 5px 10px grey;
  }
  .sticky-social a {
    text-decoration: none;
    color: #ffffff;
  }
  .sticky-social ul li i {
    font-size: 21px;
    margin-left: 18px;
    background-color: #fff;
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    transform: rotate(0deg);
  }
  .sticky-social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
  }
  .fb i {
    color: #3c5a98;
  }
  .twitter i {
    color: #1ea1f2;
  }
  .insta i {
    color: #dc4f42;
  }
  .link i {
    color: #007fd3;
  }
  .pin i {
    color: #cb2128;
  }
  
  .fb {
    background-color: #3c5a98;
  }
  .twitter {
    background-color: #1ea1f2;
  }
  .insta {
    background-color: #dc4f42;
  }
  .link {
    background-color: #007fd3;
  }
  .pin {
    background-color: #cb2128;
  }
  










section#services {
    background-image: url(images/recent-post-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.marquee-seciton {
    background: #d4af37;
    padding: 7px 0;
    color: #fff;
    font-size: 18px;
}
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-icon img {
    width: 100%;
    border-radius: 11px 11px 0 0;
}
.service-icon {
 
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}
section#gallery .row>* {
    padding: 0 !important;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin-bottom: 0px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
section#reviews {
    background: url(images/testimonial-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.star-rating {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.map-section .container-fluid {
    padding: 0;
    margin: 0;
}
/* Redesigned Contact Section */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}
.footer-logo img {
    width: 270px;
}
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--dark-bg);
    height: 100%;
    margin: 58px 0;
}

.contact-form h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: white;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
}

.contact-info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-info-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card p {
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-address {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Instagram Feed Styles */
.instagram-feed {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}
span.get-idea img {
    width: 25px;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}


.instagram-feed iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Instagram button styling */
.btn-primary .fab.fa-instagram {
    font-size: 1.2rem;
}

/* Responsive Instagram feed */
@media (max-width: 768px) {
    .instagram-feed iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .instagram-feed iframe {
        height: 300px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 500px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }

    button.navbar-toggler {
        background: #000;
        position: absolute;
        right: 15px;
    }
    #heroCarousel {
        height: auto;
        padding: 0px 0;
    }.carousel-item h1 {
        font-size: 24px;
    }

}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
} 



@-webkit-keyframes pulse{
    0%{
      -webkit-transform: scale(0.9);
    }
    50%{
      -webkit-transform: scale(1.1);
    }
    100%{ 
      -webkit-transform: scale(0.9);
    }
  }

  .mypage-alo-phone {
    position: fixed;
    right: 30px;
    bottom: 16px;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 200000 !important;
    left: 0;
}
.btn-section {
    text-align: center;
    margin-top: 40px;
}

  .mypage-alo-ph-img-circle {
          width: 30px;
          height: 30px;
          top: 43px;
          left: 43px;
          position: absolute;
          background:  url(https://i.imgur.com/J9AXAq7.png) no-repeat center center;
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          border-radius: 100%;
          border: 2px solid transparent;
          opacity: .7;
          -webkit-transition: all 0.2s ease-in-out;
          -moz-transition: all 0.2s ease-in-out;
          -ms-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
          -webkit-transform-origin: 50% 50%;
          -moz-transform-origin: 50% 50%;
          -ms-transform-origin: 50% 50%;
          -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
          background-color: #FF992C;
          background-size: 70%;
        -webkit-animation: pulse 01s infinite;
  }
  .mypage-alo-ph-circle-fill {
    
      width: 60px;
      height: 60px;
      top: 28px;
      left: 28px;
      position: absolute;
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%;
      border: 2px solid transparent;
      -webkit-transition: all .5s;
      -moz-transition: all .5s;
      -o-transition: all .5s;
      transition: all .5s;
      background-color: rgba(241, 168, 5, 0.5);
      opacity: .75 !important;
      -webkit-animation: pulse 1s infinite;
  }
  .mypage-alo-ph-circle{
      width: 90px;
      height: 90px;
      top: 12px;
      left: 12px;
      position: absolute;
      background-color: transparent;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%;
      border: 2px solid rgba(30, 30, 30, 0.4);
      opacity: .1;
      border-color:#ffb56b;
      opacity: .5;
  }
  