@charset "utf-8";
    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    /* Top Contact Bar */
    .top-bar {
        background-color: #4DB6AC;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 50px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .top-bar .contact-info {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    /* Main Header */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 50px;
        background: #fff;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 100px;
        margin-right: 10px;
    }

    /* Navigation Menu */
    .nav-container {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .nav-links {
        display: flex;
        gap: 25px;
    }

    .nav-links a {
        text-decoration: none;
        color: #2f2f2f;
        font-weight: bold;
        font-size: 16px;
    }

    /* Enquire Button */
    .enquire-btn {
        background: #1f74b9;
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        margin-left: 15px;
    }

    /* Hamburger Icon */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        height: 3px;
        width: 25px;
        background: #333;
        margin: 4px 0;
        border-radius: 5px;
    }

    /* Mobile Menu */
    @media (max-width: 768px) {
        .nav-links, .enquire-btn {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .nav-links.active,
        .enquire-btn.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: #fff;
            padding: 20px;
            border-top: 1px solid #ddd;
            gap: 15px;
            z-index: 100;
        }

        .enquire-btn.active {
            width: fit-content;
            margin-left: 20px;
        }
    }
	
/* Hero Slider Section */
    .hero {
        position: relative;
        height: 100vh;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    /* Background Images */
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    /* Overlay to darken background for readability */
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    /* Text content */
    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        text-align: center;
        padding: 40px 20px 10px;
    }

    .section-title h4 {
        color: #4DB6AC;
        margin: 0;
        font-size: 18px;
        font-weight: 500;
    }

    .section-title h2 {
        color: #1f4f66;
        font-size: 32px;
        margin: 10px 0;
    }

    /* Slider Container */
    .slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    /* Slider Track */
    .slider-track {
        display: flex;
        transition: transform 1s ease-in-out;
    }

    /* Slide Item */
    .slideplace {
        flex: 0 0 25%; /* 4 items per view */
        max-width: 25%;
        box-sizing: border-box;
        padding: 10px;
        text-align: center;
    }

    .slide-box {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s;
    }

    .slide-box:hover {
        transform: translateY(-5px);
    }

    .slide-box img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .caption {
        background: #1f74b9;
        padding: 10px;
        font-size: 16px;
        font-weight: bold;
        border-top: 3px solid #1f74b9;
		color:#FFF;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .slideplace {
            flex: 0 0 33.33%;
            max-width: 33.33%;
        }
    }

    @media (max-width: 768px) {
        .slideplace {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 480px) {
        .slideplace {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

.about-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 8%;
        flex-wrap: wrap;
        position: relative;
        overflow: hidden;
    }

    /* Background semi-circles */
    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        z-index: 0;
		background-image:url(images/h2-about-right-top-bg.png);
    }

    .about-section::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -100px;
        width: 60%;
        height: 100%;

        z-index: -1;
    }

    .about-content {
        flex: 1;
        min-width: 300px;
        z-index: 1;
    }

    .about-content h4 {
        color: #4DB6AC;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about-content h2 {
        color: #1f4f66;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-content p {
        color: #333;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Image Container */
    .about-image {
        flex: 1;
        min-width: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .diamond {
        width: 350px;
        height: 350px;
        position: relative;
        transform: rotate(45deg);
        overflow: hidden;
        transition: transform 0.4s ease;
    }

    .diamond img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: rotate(-45deg);
        transition: transform 0.4s ease;
    }

    /* Hover Zoom Effect */
    .diamond:hover img {
        transform: rotate(-45deg) scale(1.1);
    }

    .diamond::before,
    .diamond::after {
        content: "";
        position: absolute;
        border: 2px solid white;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: scale(1.2);
    }

    .diamond::after {
        transform: scale(1.4);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .about-section {
            flex-direction: column;
            text-align: center;
        }

        .about-image {
            margin-top: 30px;
        }

        .about-section::before,
        .about-section::after {
            display: none;
        }
    }
	
	   .testimonial-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 20px;
        text-align: center;
    }

    .testimonial-section h4 {
        color: #4DB6AC;
        font-size: 20px;
        margin-bottom: 5px;
    }

    .testimonial-section h2 {
        color: #1f4f66;
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* Testimonial Container */
    .testimonial-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Testimonial Card */
    .testimonial-card {
        background: #f5f7f2;
        flex: 1;
        min-width: 300px;
        padding: 20px;
        border-left: 4px solid #1f74b9;
        text-align: left;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .testimonial-card p {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-card h3 {
        font-size: 18px;
        color: #1f4f66;
        margin: 0;
    }

    /* Navigation Buttons */
    .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .testimonial-nav button {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: none;
        background: #1f74b9;
        color: white;
        font-size: 20px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .testimonial-nav button:hover {
        background: #155b8a;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .testimonial-container {
            flex-direction: column;
            align-items: center;
        }

        .testimonial-card {
            width: 100%;
        }
    }

    .services-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 20px;
        text-align: center;
    }

    .services-section h4 {
        color: #4DB6AC;
        font-size: 20px;
        margin-bottom: 5px;
    }

    .services-section h2 {
        color: #1f4f66;
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    /* Service Card */
    .service-card {
        position: relative;
        height: 180px;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: scale(1.05);
    }

    .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
        transition: filter 0.3s ease;
    }

    .service-card:hover img {
        filter: brightness(0.9);
    }

    .service-card h3 {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .services-section h2 {
            font-size: 26px;
        }

        .service-card {
            height: 160px;
        }
    }

    /* Footer Section */
    .footer {
        background-color: #1f74b9;
        color: #fff;
        padding: 50px 20px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    /* About Section */
    .footer-about h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #e4e4e4;
    }

    .footer-social-icons {
        display: flex;
        gap: 10px;
    }

    .footer-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border: 1px solid #fff;
        border-radius: 50%;
        color: #fff;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .footer-social-icons a:hover {
        background: #fff;
        color: #1f74b9;
    }

    /* Quick Links */
    .footer-links h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

    .footer-links ul li a:hover {
        text-decoration: underline;
    }

    /* Contact Info */
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-contact p {
        font-size: 14px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-contact p i {
        color: #fff;
    }

    /* Facebook Page */
    .footer-facebook h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-facebook iframe {
        width: 100%;
        border: none;
        height: 200px;
        border-radius: 6px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer {
            text-align: center;
        }
        .footer-social-icons {
            justify-content: center;
        }
    }
	 /* WhatsApp Floating Button */
  .whatsapp-float {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background-color: #25d366;
      color: white;
      font-size: 28px;
      padding: 12px 15px;
      border-radius: 50%;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background 0.3s ease;
	  text-decoration:none;
  }

  .whatsapp-float:hover {
      background-color: #1ebe57;
  }

  .whatsapp-float i {
      display: block;
  }
  
  /* Container */
    .homestay-container {
		width:95%;
      margin: 0 auto;
      padding: 20px;
    }

    /* Title Section */
    .homestay-title {
      text-align: center;
      margin-bottom: 10px;
    }

    .homestay-title h2 {
      font-size: 28px;
      color: #333;
      margin: 10px 0;
    }

    .homestay-subtitle {
      text-align: center;
      color: #666;
      font-size: 16px;
      margin-bottom: 20px;
    }

    /* Homestay Grid */
    .homestay-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .homestay-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      overflow: hidden;
      transition: transform 0.3s ease;
      text-align: center;
    }

    .homestay-card:hover {
      transform: translateY(-5px);
    }

    .homestay-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .homestay-card h3 {
      font-size: 18px;
      color: #0077cc;
      margin: 10px 0 5px;
    }

    .homestay-card p {
      font-size: 14px;
      color: #555;
      padding: 0 10px;
      min-height: 50px;
    }

    .homestay-readmore {
      display: block;
      color: #0077cc;
      font-weight: bold;
      text-decoration: none;
      margin: 10px 0;
    }

    .homestay-readmore:hover {
      text-decoration: underline;
    }

    /* Content Section */
    .homestay-content {
      margin-top: 40px;
	  width:95%;
	  margin:auto;
    }

    .homestay-content h2 {
      text-align: center;
      color: #333;
      margin-bottom: 20px;
    }

    .homestay-content p {
      font-size: 15px;
      color: #444;
      margin-bottom: 15px;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .homestay-title h2 {
        font-size: 22px;
      }
      .homestay-card img {
        height: 150px;
      }
    }
	
	.contactus-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

    .contactus-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
    }

    .contactus-breadcrumb {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    .contactus-description {
      font-size: 16px;
      color: #333;
      margin-bottom: 30px;
      line-height: 1.5;
    }

    .contactus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .contactus-box {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .contactus-box i {
      font-size: 28px;
      color: #0077cc;
      margin-bottom: 10px;
    }

    .contactus-box h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 10px;
    }

    .contactus-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contactus-box ul li {
      margin: 8px 0;
      font-size: 15px;
    }

    .contactus-box ul li a {
      text-decoration: none;
      color: #0077cc;
    }

    .contactus-box ul li a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .contactus-title {
        font-size: 22px;
      }
      .contactus-description {
        font-size: 14px;
      }
    }
	
	.aboutus-container {
    .aboutus-section {
		width:100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
    }

    .aboutus-content {
        flex: 1 1 55%;
        min-width: 300px;
    }

    .aboutus-content h2 {
        font-size: 20px;
        margin: 10px 0;
    }

    .aboutus-content p {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
		margin-left:20px;
    }

    .aboutus-image {
        flex: 1 1 40%;
        text-align: center;
    }

    .aboutus-image img {
        width: 90%;
        border-radius: 10px;
        max-width: 500px;
		margin-right:20px;
    }

    @media (max-width: 768px) {
        .aboutus-section {
            flex-direction: column;
        }

        .aboutus-content,
        .aboutus-image {
            flex: 1 1 100%;
            text-align: center;
			
        }

        .aboutus-content h2 {
            font-size: 18px;
        }
    }

	
.horthbengalhomestay-container {
        max-width: 1200px;
        margin: auto;
        padding: 15px;
    }
    .horthbengalhomestay-breadcrumb {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .horthbengalhomestay-breadcrumb a {
        color: #0073e6;
        text-decoration: none;
    }
    .horthbengalhomestay-title {
        text-align: center;
        margin-bottom: 20px;
    }
    .horthbengalhomestay-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .horthbengalhomestay-video {
        flex: 1 1 65%;
    }
    .horthbengalhomestay-video iframe {
        width: 100%;
        height: 350px;
        border: none;
    }
    .horthbengalhomestay-details {
        flex: 1 1 30%;
    }
    @media (max-width: 768px) {
        .horthbengalhomestay-row {
            flex-direction: column;
        }
        .horthbengalhomestay-video iframe {
            height: 220px;
        }
    }
	
