*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern Color Palette */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #434343 0%, #000000 100%);
    --light-bg: #f8f9fa;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Navbar with modern gradient */
.navbar-default {
    background: var(--primary-gradient) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-default:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Navbar logo styling for perfect circular appearance */
.navbar img[src*="anya-dhrupad-logo"] {
    border-radius: 50% !important;
    object-fit: cover;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.navbar img[src*="anya-dhrupad-logo"]:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Fix navbar items from moving - remove Bootstrap default borders/outlines */
.navbar-nav > li > a {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: bold !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav > li > a:hover::after {
    width: 80%;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:active,
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    font-weight: bold !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    transform: translateY(-2px);
}

/* Active nav item underline for both mobile and desktop */
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
    border-bottom: 3px solid #fff !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.navbar-nav > li > a b {
    font-weight: inherit !important;
}

.dropdown-menu {
    background: var(--primary-gradient) !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: var(--card-shadow) !important;
    animation: fadeInUp 0.3s ease;
}

.dropdown-menu > li > a {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-weight: bold !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(5px);
}

.dropdown-menu > li > a b {
    font-weight: inherit !important;
}

/* Mobile layout - hamburger left, logo right */
@media (max-width: 767px) {
    .navbar-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .navbar-toggle {
        float: none !important;
        margin-left: 15px !important;
        margin-right: 0 !important;
        order: 1 !important;
    }
    
    .navbar-brand {
        order: 2 !important;
        float: none !important;
    }
    
    .navbar-header img {
        order: 3 !important;
        margin-right: 15px !important;
        margin-left: auto !important;
    }
}

.header{
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url(images/banner.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.header img{
    width: 170px;
    float: left;
    animation: slideInLeft 0.8s ease;
}
.login-btn{
    width: 100px;
    padding: 8px 0;
    outline: none !important;
    border: 2px solid #fff;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    float: right;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease;
}

.login-btn:hover {
    background: #fff;
    color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.header h1{
    padding-top: 260px;
    padding-bottom: 0;
    font-size: 55px;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}
.header p{
    margin: 18px 0;
    animation: fadeInUp 1s ease 0.5s both;
    font-size: 18px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}


.input-group{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;

    width: 90% !important;
    max-width: 500px;
    border-radius: 30px;
    background: #fff;
    margin: auto;
    padding: 2px;
}

.input-group-append {
    margin-left: -1px;
    display: flex;
}


.form-control{
    border: 0 !important;
    border-radius: 30px !important;
    margin:auto;
    box-shadow: none !important;  
}

.features{
    padding: 60px 0;
    background: var(--light-bg);
    animation: fadeIn 1s ease;
}
h1{
    text-align: center;
    padding-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: fadeInUp 0.8s ease;
}
.feature-img img{
    width: 100%;
    transition: all 0.4s ease;
}

.feature-img img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--hover-shadow);
}

.price{
    width: 75px;
    height: 70px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    border-radius: 30%;
    padding: 10px;
    box-shadow: var(--card-shadow);
    left: 20px;
    bottom: -50px;
    animation: pulse 2s infinite;
}
.feature-img{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.feature-img img{
    height: 300px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

/* .feature-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.feature-img:hover::after {
    opacity: 0.7;
} */

.features .fa{
    font-size: 15px;
    color: #667eea;
    transition: all 0.3s ease;
}

.features .fa:hover {
    color: #764ba2;
    transform: scale(1.2);
}

.feature-details{
    padding: 20px;
    text-align: justify;
    animation: fadeInUp 0.8s ease;
}
.feature-details h4{
    font-weight: 600;
    margin-top: 20px;
    color: #667eea;
    transition: all 0.3s ease;
}

.feature-details h4:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.feature-details .fa{
    margin-right: 5px;
}
.feature-box{
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
    animation: fadeInUp 0.8s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}
.gallery-box img{
    width: 100%;
    height: 250px;
    border-radius: 15px;
    cursor: pointer;
    background-color: rgba(102, 126, 234, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}
.gallery-box img:hover{
    transform: scale(1.08) rotate(-2deg);
    filter: brightness(1.1);
    box-shadow: var(--hover-shadow);
}

.gallery-box{
    position: relative;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.gallery-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-box:hover::before {
    opacity: 0.3;
}

.users-feedback{
    padding: 100px 0;
    background: var(--light-bg);
}
.user-review{
    text-align: center;
    box-shadow: var(--card-shadow);
    padding-bottom: 70px;
    border-radius: 15px;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.user-review::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--accent-gradient);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.user-review:hover::before {
    opacity: 0.05;
}

.user-review:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.user-review p{
    padding: 50px 10px 10px 10px;
    position: relative;
    z-index: 1;
}

.users-feedback img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    margin: -50px 0 20px 35%;
    border: 4px solid #fff;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.users-feedback img:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: #667eea;
}

.user-review p::before{
    content: '\201d';
    display: block;
    position: absolute;
    font-size: 100px;
    color: #667eea;
    font-family: sans-serif;
    left: 44%;
    top: -20px;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

body {
    font-family: system-ui;
    background: #eee;
    text-align: center;
  }
  
  
  .site-footer {
      margin-top: 50px;
      position: relative;
      background-color: #e9ecef;
      background-image: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
      width: 100%;	
      bottom: 0;
      padding: 40px 0 20px 0;
  }
  
  .site-footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .site-footer .footer-content {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 30px;
  }
  
  .site-footer .footer-section h3 {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: left;
  }
  
  .site-footer .footer-section p {
      color: #fff;
      font-size: 14px;
      line-height: 1.8;
      text-align: left;
      margin-bottom: 15px;
  }
  
  .site-footer .footer-section p i {
      margin-right: 10px;
      width: 20px;
  }
  
  .site-footer .footer-divider {
      width: 60px;
      height: 3px;
      background-color: #000;
      margin: 20px 0;
  }
  
  .site-footer .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
  }
  
  .site-footer .footer-links li {
      margin-bottom: 12px;
  }
  
  .site-footer .footer-links li a {
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
      display: inline-block;
  }
  
  .site-footer .footer-links li a:hover {
      color: #000;
      transform: translateX(5px);
  }
  
  .site-footer .social-icons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
  }
  
  .site-footer .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: #fff;
      font-size: 20px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }
  
  .site-footer .social-icons a:hover {
      background-color: #fff;
      color: #2a2a72;
      transform: translateY(-5px);
      border-color: #000;
  }
  
  .site-footer .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 20px;
      margin-top: 30px;
  }
  
  .site-footer .footer-bottom p {
      color: #fff;
      font-size: 14px;
      text-align: center;
      margin: 0;
  }
  
  
  
  /*------------------------------------------------------------------
  [ Screen Sizes] */
  
  
  /* Extra small devices (phones, 600px and down) */
  @media only screen and (max-width: 768px) {
  
      .site-footer .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
      }
      
      .site-footer {
          padding: 30px 0 20px 0;
      }
  
  }
  
  /* Medium devices (tablets, 768px to 991px) */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
  
      .site-footer .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
      }
  
  }
  
 /* Light grey footer text colors */
 .site-footer .footer-section h3 {
     color: #212529 !important;
 }

 .site-footer .footer-section p {
     color: #495057 !important;
 }

 .site-footer .footer-links li a {
     color: #495057 !important;
 }

 .site-footer .footer-links li a:hover {
     color: #212529 !important;
     transform: translateX(5px);
 }

 .site-footer .footer-bottom p {
     color: #6c757d !important;
 }

 .site-footer .social-icons a {
     background-color: rgba(52, 58, 64, 0.1) !important;
     color: #495057 !important;
 }

 .site-footer .social-icons a:hover {
     background-color: #495057 !important;
     color: #fff !important;
 }

 .site-footer .footer-divider {
     background-color: #495057 !important;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     /* left & right */
     align-items: center;
     padding: 15px 20px;
     font-size: 14px;
     color: #666;
     border-top: 5px solid #ccc;
     /* top line */
     border-bottom: 5px solid #ccc;
     /* bottom line */
 }

 @media (max-width: 600px) {
     .footer-bottom {
         flex-direction: column;
         gap: 5px;
         text-align: center;
     }
 }

/* Gap between event cards for desktop only */
@media (min-width: 768px) {
    .features .container .row {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .features .col-md-4 {
        flex: 0 0 auto;
        max-width: 400px;
    }
}