* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

.fade-section {
    opacity: 0;
    transform: translateY(10px); /* smaller offset */
    will-change: transform, opacity;
}


.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}





/* TOP BAR */
.top-bar {
    background: #fff;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.top-bar .info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-bar .info span i {
    color: #00a6e7;
    font-size: 15px;
}

.top-bar .info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.top-bar .info a:hover {
    color: #0056b3;
}

.top-bar .social a {
    margin-left: 12px;
    color: #00a6e7;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f2f9fc;
    transition: all 0.3s ease;
}

.top-bar .social a:hover {
    background: #00a6e7;
    color: #fff;
    transform: translateY(-2px);
}



/* HEADER */
header {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* centers vertically */
    background: #00a6e7;
    padding: 0 5%; /* no vertical padding, keeps height consistent */
}

header .logo {
    display: flex;        /* put img + text in one row */
    align-items: center;  /* vertical center */
}

header .logo img {
    height: 60px;         /* smaller so it fits in 60px header */
    margin: 0;            /* remove top margin */
}

.logo-name {
    margin-left: 10px;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}


.book-btn {
    background: #ffcc00;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.book-btn:hover {
    background: #e6b800;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 5%;
    background: #f9f9f9;
    animation: fadeIn 1.2s ease;
}

.hero-img {
    width: 100%;
    max-width: 600px; /* or whatever fits your layout */
    height: 400px; /* fixed height to avoid jump */
    overflow: hidden;
}

.hero-img img {
    max-width: 100%;
    animation: slideInLeft 1s ease;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover; /* fills space without distortion */
}

.hero-text {
    flex: 1;
    padding: 20px;
    animation: slideInRight 1s ease;
}

.hero-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 40px;
    color: #00a6e7;
}

/* NAV MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}
nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Poet Section */
.hero-text h2 {
    margin: 0;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.hero-text h2.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}



/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: white;
    font-size: 30px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1eb346;
}

/* Phone button */
.phone-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50; /* green */
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 100;
}

.phone-float:hover {
    background-color: #128C7E; /* darker for hover effect */
    text-decoration: none;
}

.phone-float i {
    vertical-align: middle;
}

/* side bar */
/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px; /* hidden initially */
    width: 250px;
    height: 100%;
    background: #00a6e7;
    color: white;
    padding-top: 60px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 9999;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Close Button */
.sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* work section */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.service-card {
    width: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Overlay Animation */
.service-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,166,231,0.85);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.5s ease;
    text-align: center;
    padding: 10px;
}

.service-card:hover .service-overlay {
    top: 0;
}

.service-overlay h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.service-overlay p {
    margin-top: 5px;
    font-size: 16px;
}

.service-title {
    padding: 10px;
    text-align: center;
    background: #fff;
}

.service-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}


/* About Section */
.about-section {
    padding: 50px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

/* Left Image */
.about-image {
    flex: 1 1 350px;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Middle Content */
.about-content {
    flex: 2 1 500px;
}

.about-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.about-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Right Contact Box */
.about-contact-box {
    flex: 1 1 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-contact-box.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 40px;
    color: #00a6e7;
    margin-right: 10px;
}

.contact-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.contact-header p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.contact-phone {
    font-size: 20px;
    font-weight: bold;
    color: #00a6e7;
    margin: 10px 0;
}

.contact-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.about-contact-box h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.about-contact-box p {
    margin: 5px 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-icon {
        font-size: 32px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}
.services-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #444;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* Default state for fade-in on scroll */
.service-card {
    position: relative;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #444;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon {
    background: #ff6600;
    color: #fff;
}

/* When visible on scroll */
.service-card.visible {
    transform: translateY(0);
    opacity: 1;
    animation: cyanGlow 2s infinite ease-in-out;
}

/* Add glowing border animation */
/* Glow Animation */
@keyframes cyanGlow {
    0%, 100% {
        border-color: rgba(0, 255, 255, 0.3);
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    }
    50% {
        border-color: rgba(0, 255, 255, 0.8);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

/* Sequential Delay for Wave Effect */
.service-card:nth-child(1).visible { animation-delay: 0s; }
.service-card:nth-child(2).visible { animation-delay: 0.3s; }
.service-card:nth-child(3).visible { animation-delay: 0.6s; }
.service-card:nth-child(4).visible { animation-delay: 0.9s; }
.service-card:nth-child(5).visible { animation-delay: 1.2s; }
.service-card:nth-child(6).visible { animation-delay: 1.5s; }

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,255,255,0.6);
}

/* Brands Section */
.brands-container {
    overflow: hidden;
    width: 100%;
    background: white;
    padding: 10px 0;
    border-radius: 8px;
    border: 2px solid #ddd;
  }

  .brands-slider {
    display: flex;
    gap: 20px;
  }

  .brand-card {
    flex-shrink: 0;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
  }

  .brand-card img {
    height: 60px;
    display: block;
  }

  .brand-card.dynamic-border {
    border-color: #4b0082;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

/* why chosse us */
.why-section {
  overflow: hidden;
  padding: 30px 0;
  background: #f8f9fa;
}

.why-slider {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.why-card {
  min-width: 250px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.why-card i {
  font-size: 40px;
  color: #00aaff;
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 18px;
  margin: 8px 0;
  font-weight: bold;
}

.why-card p {
  font-size: 14px;
  color: #555;
}


/* Footer */
.footer {
  background: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.footer-col p, 
.footer-col ul, 
.footer-col a {
  font-size: 14px;
  line-height: 1.5;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
  border-radius: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
}

.footer-col ul li a:hover {
  color: #007bff;
}

.sub-footer {
  background-color: #00a6e7;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
}

.sub-footer p {
  margin: 0;
}

.sub-footer strong {
  font-weight: bold;
}

.map-container {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
}



/* Instagram Feed Styling */
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; /* space between images */
  margin-top: 10px;
}

.instagram-feed img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  object-fit: cover;
  border: 2px solid #ddd; /* border around each image */
  padding: 2px; /* space inside border */
  background-color: #fff; /* border background */
}



.instagram-feed img:hover {
  transform: scale(1.05);
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 600px) {
  .instagram-feed img {
    width: 60px;
    height: 60px;
  }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

/* Active States */
.sidebar.active {
    right: 0;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide normal nav on mobile */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        display: none;
        width: 100%;
        background: #00a6e7;
        position: absolute;
        top: 60px;
        left: 0;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .book-btn {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideInLeft {
    from {transform: translateX(-50px); opacity: 0;}
    to {transform: translateX(0); opacity: 1;}
}

@keyframes slideInRight {
    from {transform: translateX(50px); opacity: 0;}
    to {transform: translateX(0); opacity: 1;}
}

@keyframes pulse {
    0%, 100% {transform: scale(1);}
    50% {transform: scale(1.1);}
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        position: relative;
        top: -20px; /* moves text up */
    }
}

@media (max-width: 480px) {
    .hero-text {
        top: -35px; /* move it more up on very small screens */
    }
}

