/* CSS Document */
 body {
            font-family: Arial, sans-serif;
        }
        
        
  /* Top Section Styles */
        .top-bar {
            background-color: #0d3b66; /* Navy blue */
            color: white;
            padding: 10px 0;
        }

        .top-bar .contact-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar .contact-info a {
            color: white;
            text-decoration: none;
            margin-right: 5px;
        }

        .top-bar .social-icons a {
            color: white;
            margin-left: 10px;
            font-size: 20px;
        }

        .top-bar .social-icons a:hover {
            color: #d32f2f; /* Red on hover */
        }

        /* Media query for mobile view */
        @media (max-width: 768px) {
            .top-bar .contact-info a.email {
                display: none; /* Hide email on mobile */
            }

            .top-bar .mobile-info {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .top-bar .mobile-info a {
                margin-left: 10px;
                margin-right: 10px;
            }
        }		
		
		
		
		
		
	
	  /* Logo Section */
        .logo-section {
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Buttons styles */
        .logo-section .btn-custom {
            background-color: #d32f2f; /* Red button */
            color: white;
            border: none;
            padding: 10px 20px;
            margin-left: 10px;
            border-radius: 4px;
        }

        .logo-section .btn-custom:hover {
            background-color: #b71c1c; /* Darker red on hover */
        }

        /* Aligning logo */
        .logo-section .logo img {
            max-width: 250px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .navbar-brand {
                flex-direction: column;
				margin:auto;
								
            }
			
		

            .logo-section .btn-wrapper {
                margin-top: 15px;
            }

            .logo-section .btn-custom {
                margin-left: 0;
                margin-bottom: 10px;
               
            }
        }	
		
		
		
		
		
	 .navbar {
            background-color: white; /* White background */
            padding: 10px 20px; /* Margin on left and right */
			
        }

        .navbar-brand img {
            max-height: 50px; /* Adjust logo size */
        }

        .navbar-nav .nav-link {
            color: black; /* Black text color */
            font-weight: 500;
            padding: 10px;
			margin-left:10px; margin-right:10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #d32f2f; /* Red text on hover */
        }

        .navbar-toggler {
            border-color: #d32f2f; /* Red border for toggle */
        }

        .navbar-toggler-icon {
            background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%280, 0, 0, 1%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
            /* Black toggle icon */
        }

        /* Dropdown on hover for desktop */
        .navbar-nav .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
			
        }

        .dropdown-menu {
            background-color: #10215c; /* White background for dropdown */
            border: none;
			
			
        }

        .dropdown-item {
            color: white;
            padding: 10px;
            transition: background-color 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #f2f2f2; /* Light gray on hover */
        }

        /* Full-width dropdown for mobile */
        @media (max-width: 768px) {
            .navbar-nav .nav-link {
            color: black; /* Black text color */
            font-weight: 500;
            padding: 10px;
			margin-left:10px; margin-right:10px;
            transition: color 0.3s ease;
			background:#0d3b66;
			color:#fff;
        }
		
			
			.dropdown-menu {
                width: 100%; /* Full width on mobile */
				
            }

            .navbar-nav {
                text-align: center;
				
            }

            .navbar-nav .nav-link {
                display: block;
                padding: 10px;
				
            }
        }
		
		
		
		
		   /* Banner Section Styles */
        .banner {
            display: none; /* Initially hide the banner */
            width: 100%; /* Full width */
            background-color: #d32f2f; /* Red background */
            color: white; /* White text color */
            text-align: center; /* Center text */
            padding: 2px 0; /* Padding for the banner */
            font-size: 24px; /* Font size for banner text */
        }

        /* Show banner only on large screens */
        @media (min-width: 992px) {
            .banner {
                display: block; /* Show the banner */
            }
        }

		
		
.mobile-banner-slider {
    display: none; /* Hide on non-mobile screens */
  }

  @media (max-width: 768px) {
    .mobile-banner-slider {
      display: block;
      width: 100%; /* Full width on mobile */
      margin: 0 auto;
    }

    .mobile-banner-slider img {
      border-radius: 8px; /* Optional: add a little border-radius for style */
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Add shadow for effect */
    }

    .carousel-inner img {
      width: 100%;
      height: auto;
    }
  }
  
  
		
		  /* Inquiry Form Styles */
        .inquiry-form {
            padding: 20px;
            background-color: #f9f9f9; /* Light grey background */
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Image Styles for Advertising */
        .advertisement-image {
            margin-top: 20px;
            width: 100%; /* Full width for the ad image */
            display: none; /* Initially hidden */
        }
		
		
	 .text-center {
        text-align: center;
    }

    .box-shadow {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow on all sides */
    }
	
	
	
	.service-box {
    background-color: #fff;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border-radius: 10px;
	margin:10px;
	width:47.5%;
	
}
	
	
	
@media (max-width: 768px) {

	.service-box {
    background-color: #fff;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border-radius: 10px;
	margin:10px;
	width:100%;


}
	}
	
	
	
	
	/* General Section Styles */
.services-section {
    background-color: #ffffff;
    padding: 40px 0;
}

/* Heading Styles */
.services-heading {
    color: #0d3b66;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Column Styles */
.service-col {

    margin: 10px;
	width:31%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image Styles */
.service-image {
    width: 100%;
    border-radius: 10px;
}

/* Title and Description Styles */
.service-title {
    color: #0d3b66;
    margin-top: 15px;
}

.service-description {
    color: #555;
    margin-bottom: 20px;
}

/* Button Styles */
.service-btn {
    background-color: red;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
.service-col {

    margin: 10px;
	width:100%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
}




.con-title {
    margin-bottom: 30px;
}

.con-title h1 {
margin-top:20px;
    font-size: 2.5em;
    color: #ff5733;
    text-align: center;
    margin-bottom: 10px;
}

.con-title h1 span {
    display: block;
    font-size: 1.2em;
    color: #fff; /* Attractive color for contrast */
}

.con-title p {
    font-size: 1.2em;
    color: #333;
}

.title-icon {
    width: 100px; /* Adjust size as needed */
    margin-top: 10px;
}

.ulockd-ffact-one {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s;
}

.ulockd-ffact-one:hover {
    transform: translateY(-5px);
}

.ulockd-ffact-one p {
    font-size: 1.1em;
    color: #0d3b66; /* Match with the main title color */
    margin-bottom: 10px;
}

.timer {
    font-size: 2em;
    font-weight: bold;
    color: #ff5733; /* Attractive color for the timer */
}

.sign {
    font-size: 1.5em;
    color: #0d3b66; /* Match with the main title color */
}





h2 {
    color: #0d3b66; /* Navy blue for headings */
    margin-bottom: 20px; margin-top:50px;
}

.gallery {
    margin-top: 20px;
}

.gallery-item {
    margin: 10px;
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Prevents the image from overflowing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.gallery-item img {
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom spacing */
    transition: transform 0.3s; /* Add transition for hover effect */
}

.gallery-item:hover img {
    transform: scale(1.05); /* Scale image on hover for effect */
}


.event-management-services {
    padding: 50px 0;
    background-color: #0d3b66; margin-top:50px; /* Light background */
}

.service-card {
    background: #fff; /* White background for each service card */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Inner padding */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.service-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.service-icon {
    margin-bottom: 15px; /* Spacing below the icon */
}

h2 {
    color: #0d3b66; /* Consistent color for headings */
}

.text-thm2 {
    color: #007bff; /* Theme color for emphasis */
}


 .faqs-section {
        background-color: #ffffff; /* white background */
        padding: 50px 0; /* vertical padding */
    }

    .main-title h2 {
        color: #003366; /* navy blue color for headings */
        font-size: 2.5em; /* size for main title */
        margin-bottom: 20px;
    }

    .main-title img {
        margin-top: 10px;
        width: 60px; /* adjust image size as needed */
    }

    .faq-item {
        margin: 20px 0; /* vertical margin between items */
        padding: 20px; /* padding for each item */
        background-color: #f9f9f9; /* light background for items */
        border-radius: 8px; /* rounded corners */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* subtle shadow */
    }

    .faq-question {
        color: #003366; /* navy blue for questions */
        font-size: 1.5em; /* question size */
    }

    .faq-answer {
        color: #333; /* dark text color for answers */
        margin-top: 10px; /* margin above answers */
    }

    @media (max-width: 768px) {
        .main-title h2 {
            font-size: 2em; /* smaller title on mobile */
        }

        .faq-question {
            font-size: 1.2em; /* smaller question size */
        }
    }
	
	
	
	.news-blog-section {
  padding: 30px 0;
  background-color: #0d3b66;
  margin-top:30px; /* Light background to match design */
}

.blog-item {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 200px;
  object-fit: cover;
}

.blog-content h3 {
  font-size: 18px;
  color: #ff4040; /* Heading color: Red */
  margin-top: 15px;
  text-align:center;
}

.blog-content p {
  color: #000;
  text-align:justify;
  font-size: 15px;
  margin: 10px 0;
}

.btn-know-more {
  background-color: #ff4040; /* Button color: Red */
  color: white;
  border: none;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

.btn-know-more:hover {
  background-color: #e33333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-blog-section {
    padding: 30px 0;
  }

  .blog-content p {
    font-size: 14px; color:#000000;
  }
}



.resort-collaboration {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.section-title {
    font-size: 28px;
    color: #ff4040;
    margin-bottom: 30px;
}

.resort-card {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.resort-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.resort-title {
    font-size: 18px;
    color: #ff4040;
    margin: 15px 0 10px;
}

.resort-description {
    text-align: justify;
    font-size: 14px;
    color: #666;
}

.resort-rating {
    margin: 15px 0;
}

.resort-rating .fa {
    color: #ffc107; /* Yellow star color */
}

.checked {
    color: #ffc107;
}

.btn-inquiry {
    background-color: #ff4040;
    color: white;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.btn-inquiry:hover {
    background-color: #e63939;
}

@media (max-width: 767px) {
    .resort-card {
        margin-bottom: 20px;
    }

    .col-md-4 {
        margin-bottom: 30px;
    }
}


	
	.reviews-section {
        background-color: #0d3b66; /* Light background color */
    }
    .review-item {
        text-align: center;
        padding: 20px;
		color:#FFFFFF;
    }
    .review-item h4 {
        margin: 10px 0;
        font-weight: bold;
    }
    .stars {
        color: #FFD700; /* Yellow color for stars */
        font-size: 20px;
    }
	
	
	  .contact-section {
        background-color: #f9f9f9;
        padding: 50px 0;
    }
    .contact-section h3 {
        color: #0d3b66;
        margin-bottom: 20px;
		text-align:center; 
		border-bottom:2px solid #0d3b66;
    }
    .contact-card {
        background-color: #fff; /* White background for contrast */
        padding: 20px;
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        margin-bottom: 30px; /* Gap between rows (mobile) */
        transition: transform 0.3s ease; /* Smooth hover effect */
		width:31%;
    }
    .contact-card:hover {
        transform: translateY(-10px); /* Lifts the card on hover */
    }
    .social-icons a {
        margin-right: 10px;
        color: #007bff;
        font-size: 24px;
    }
    .map-container {
        overflow: hidden;
        border-radius: 8px;
    }
    .form-control {
        border-radius: 5px;
        border: 1px solid #ccc;
    }
    .btn-primary {
        background-color: #007bff;
        border: none;
        border-radius: 5px;
    }
    .btn-primary:hover {
        background-color: #0056b3;
    }

    /* Column Styling with Gap */
    .contact-card {
        margin: 15px; /* Adds gap between each column */
    }

    /* Responsive Styling */
    @media (max-width: 767px) {
        .contact-card {
            margin: 10px 0; /* Adjust margin for small screens */
        }
		
		
		  .contact-card {
        background-color: #fff; /* White background for contrast */
        padding: 20px;
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        margin-bottom: 30px; /* Gap between rows (mobile) */
        transition: transform 0.3s ease; /* Smooth hover effect */
		width:100%;
    }
    }
	
	
	
	  .footer-section {
        background-color: #002244; /* Navy Blue background */
        color: white;
        padding: 40px 0;
    }

    .footer-section h3 {
        color: #ff0000; /* Red color for headings */
        margin-bottom: 20px;
    }

    .footer-links {
        list-style: none;
        padding-left: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links li a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links li a:hover {
        color: #ff0000; /* Red hover effect for links */
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 15px;
    }

    .social-icons a {
        margin-right: 10px;
        color: white;
        font-size: 24px;
    }

    .social-icons a:hover {
        color: #ff0000; /* Red hover effect for social icons */
    }

    /* Footer Column Spacing */
    .footer-column {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
        padding: 20px;
        border-radius: 10px; /* Rounded corners */
        background-color: #001f3f; /* Slightly darker navy for contrast */
        margin-bottom: 20px; /* Adds gap between columns */
    }

    /* Responsive Styling */
    @media (max-width: 767px) {
        .footer-column {
            margin-bottom: 30px;
        }
    }
	
	.copyright-section {
        background-color: #002244; /* Navy Blue Background */
        color: white;
        padding: 15px 0;
    }

    .copyright-section p {
        margin: 0;
        font-size: 14px;
    }

    .copyright-section a {
        color: #ff0000; /* Red color for link */
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .copyright-section a:hover {
        color: white; /* White color on hover */
    }

	




    /* BLOG PAGES START */

.blog-box {
  display: block;
  background: #ffffff;
  color: #000;
  padding: 30px 15px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.blog-box:hover {
  background: #ff6600;
  color: #fff;
  transform: translateY(-5px);
}

    /* BLOG PAGES END */




.faq-review-section {
  padding: 60px 20px;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.faq-review-section h2 {
  color: #d32f2f;
  text-align: center;
  margin-bottom: 25px;
}

.faq-box {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #d32f2f;
  border-radius: 5px;
}

.faq-box h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-box p {
  color: #555;
  line-height: 1.7;
  text-align: center;
}

.review-box {
  background: #ffffff;
  padding: 20px;
  margin-top: 15px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.review-box p {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.review-box h4 {
  color: #d32f2f;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-review-section {
    padding: 40px 10px;
  }

  .faq-box h3 {
    font-size: 16px;
  }

  .faq-box p,
  .review-box p {
    font-size: 14px;
  }
}






 

/* CONTACT SECTION  START*/

.btn-submit:hover {
  background: hsl(268, 90%, 40%);
}


.contact-card a:hover {
  text-decoration: underline;
}

.social-icons {
  text-align: center;
  margin-top: 10px;
}

.social-icons a {
  margin: 0 8px;
  font-size: 20px;
  color: #d32f2f;
  transition: 0.3s;
}

.social-icons a:hover {
  color: hsl(251, 75%, 48%);
}


/* CONTACT SECTION END */





