body {
  font-family: 'Poppins', 'sans-serif';
  background-color: #fff;
  
}
/* Sticky header styles */
#header {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding:inherit;
}
#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* banner slides */

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}
/* Text Content */
.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.content p {
    font-size: 20px;
    line-height: 1;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 5px;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 28px;
    }
    .content p {
        font-size: 16px;
    }
}
/* ===== TABLET VIEW ===== */
@media(min-width:768px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:2.5rem;
    }
}

/* ===== DESKTOP VIEW ===== */
@media(min-width:1024px){
    .grid{
        grid-template-columns:repeat(3,1fr);
    }

    .hero h1{
        font-size:3rem;
    }
}

/* IMAGE Gallery */
    .gallery {
	margin: 0 70px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        transform: translateY(30px);
        opacity: 0;
        animation: fadeUp 0.7s ease forwards;
    }

    .gallery-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.12);
    }

    @keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
    }

    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.85);
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
        animation: zoomIn 0.4s ease;
    }

    @keyframes zoomIn {
        from { transform: scale(0.7); }
        to { transform: scale(1); }
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 34px;
        color: #fff;
        cursor: pointer;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        user-select: none;
        padding: 10px 15px;
        background: rgba(0,0,0,0.4);
        border-radius: 50%;
    }

    .prev { left: 20px; }
    .next { right: 20px; }

    /* Responsive */
    @media (max-width: 992px) {
        .gallery { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
        .gallery { grid-template-columns: 1fr; }
    }


/* BLOG SECTION */

  .blog-section {
        max-width: 1100px;
        margin: 40px auto;
        padding: 10px 20px;
    }

    .blog-card {
        display: flex;
        align-items: center;
        gap: 25px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.06);
        margin-bottom: 35px;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards;
    }

    /* Delay second card animation */
    .blog-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        transition: 0.3s ease;
    }

    .blog-image {
        flex: 1;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    /* Image zoom on hover */
    .blog-card:hover img {
        transform: scale(1.08);
    }

    .blog-content {
        flex: 1;
        padding: 15px 20px;
    }

    .blog-content h2 {
        margin: 0 0 10px;
        font-size: 20px;
        font-weight: 600;
        color: #222;
    }

    .blog-content p {
        color: #555;
        line-height: 1.6;
        font-size: 15px;
        margin: 0;
    }

    .read-more {
        display: inline-block;
        margin-top: 10px;
        padding: 6px 14px;
        background: #0056b3;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 14px;
        transition: 0.3s;
    }

    .read-more:hover {
        background: #007bff;
    }

    .reverse {
        flex-direction: row-reverse;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .blog-card,
        .reverse {
            flex-direction: column;
        }

        .blog-image img {
            height: 180px;
        }
    }
	
/* blog section end */

/* RESOURCES SECTION */

  .res-section {
        max-width: 1100px;
        margin: 40px auto;
        padding: 20px 20px;
    }

    .res-card {
        display: flex;
        align-items: center;
        gap: 44px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.06);
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards;
    }

    /* Delay second card animation */
    .res-card:nth-child(2) {
        animation-delay: 0.5s;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .res-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        transition: 0.5s ease;
    }

    .res-image {
        flex: 1;
        overflow: hidden;
    }

    .res-image img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    /* Image zoom on hover */
    .res-card:hover img {
        transform: scale(1.08);
    }

    .res-content {
        flex: 1;
        padding: 20px 20px;
    }

    .res-content h2 {
        margin: 0 0 10px;
        font-size: 16px;
        font-weight: 600;
        color: #222;
    }

    .res-content p {
        color: #555;
        line-height: 1.6;
        font-size: 15px;
        margin: 0;
    }

    .read-more {
        display: inline-block;
        margin-top: 10px;
        padding: 6px 14px;
        background: #0056b3;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 14px;
        transition: 0.3s;
    }

    .read-more:hover {
        background: #007bff;
    }

    .reverse {
        flex-direction: row-reverse;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .res-card,
        .reverse {
            flex-direction: column;
        }

        .res-image img {
            height: 100px;
        }
    }
	
/* resources section end */

/* Prevent content jump */
body.has-sticky-header {
    padding-top: 90px; /* adjust to header height */
}

a{
    color:#006cb5;
    text-decoration:none;
}
h5 {
    font-size: 24px;
	text-align: left;
  }

.table-container {
            display: flex;
            gap: 20px; /* space between tables */
        }

        table {
            border-collapse: collapse;
            width: 220px;
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden; /* required for rounded corners */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        th {
            background: #006db5;
            color: #ffffff;
            padding: 12px;
            font-size: 16px;
        }

        td {
            padding: 16px;
            font-size: 24px;
            font-weight: bold;
            color: #333;
			text-align:center;
        }
  
.main-table {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.main-tablenew {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

/* Left section */
.left-box {
    background-color: #f6f6ef;
    color: #806b82;
    padding: 50px;
    width: 40%;
}

.left-box h3 {
    color: #333;
    font-size: 30px;
    margin-bottom: 20px;
}

.left-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
	color: #333;
	font-weight:500;
}

.donate-btn {
    display: inline-block;
    padding: 14px 26px;
    margin-right: 15px;
    background: #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.donate-btn:hover {
    background: #006db5;
    color: #1f3b3c;
}

/* Right section */
.right-box {
    background-color: #006db5;
    color: #ffffff;
    padding: 50px;
    width: 43%;
}

.right-box h3 {
    font-size: 30px;
    margin-bottom: 20px;
	color: #fff;
}

.right-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
	color: #fff;
	font-weight:500;
	
}

.right-boxnew p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.action-btn {
    display: inline-block;
    padding: 14px 26px;
    margin-right: 15px;
    background: #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.action-btn:hover {
    background: #ffffff;
}


.counter-container{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:nowrap; 
	margin:70px;             /* force single row */
}

.counter-box{
    flex:1;                        /* equal width */
    background:#ffffff;
    border:2px solid #006cb5;
    border-radius:10px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 6px 14px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
}

.counter-box:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,108,181,0.25);
}

.counter-number{
    font-size:32px;
    font-weight:bold;
    color:#006cb5;
    margin-bottom:10px;
}

.counter-text{
    font-size:16px;
    color:#006cb5;
    line-height:1.4;
}

/* optional: prevent wrapping on very small screens */
@media (max-width:900px){
    .counter-container{
        overflow-x:auto;
    }
    .counter-box{
        min-width:180px;
    }
}



  .stats-container {
        display: flex;
        gap: 30px;
    }
	
	

    .card {
        width: 260px;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        overflow: hidden;
        text-align: center;
    }

    /* Numbers section (unchanged) */
    .card-header {
        background: #ffffff;
        color: #006cb5;
        padding: 30px 10px;
        font-size: 34px;
        font-weight: bold;
		
    }

    /* Text section (UPDATED) */
    .card-body {
        background: #ffffff;
        color: #006cb5;
        padding: 22px 15px;
        font-size: 18px;
    }
	
	.card-extra {
        background: #ffffff;
        color: #006cb5;
      
    }

    @media (max-width: 600px) {
        .stats-container {
            flex-direction: column;
        }
    }
	
	
	 /* ---------- FLOATING RIGHT MENU ---------- */
    .floating-menu {
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        overflow: hidden;
        z-index: 999;
    }

    .floating-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 155px;
        height: 55px;
        text-decoration: none;
        color: #006cb5;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
    }

    .floating-menu a:last-child {
        border-bottom: none;
    }

    .floating-menu a:hover {
        background: #006cb5;
        color: #fff;
    }



	/* ===== MAP ===== */
.map-section iframe{
    width:100%;
    height:380px;
    border:0;
}

/* ===== CONTACT DETAILS ===== */
.contact-details{
    padding:60px 20px;
}
.details-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.detail-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}
.detail-card:hover{
    transform:translateY(-6px);
}
.detail-icon{
    font-size:36px;
    color:#006cb5;
    margin-bottom:15px;
}
.detail-card h4{
    font-size:18px;
    margin-bottom:10px;
}
.detail-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}
.detail-card a{
    color:#006cb5;
    text-decoration:none;
    font-weight:500;
}

/* ===== FORM SECTION ===== */
.contact-container{
    max-width:1200px;
    margin:0 auto 60px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    padding:40px;
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}
.contact-info h2{
    font-size:28px;
    color:#006cb5;
    margin-bottom:20px;
}
.contact-info p{
    font-size:16px;
    color:#555;
    line-height:1.7;
}


/* ===== FORM ===== */
.contact-form{
    background:#006cb5;
    border-radius:16px;
    padding:32px;
    color:#000;
}
.contact-form h3{
    font-size:26px;
    margin-bottom:20px;
}
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:14px;
    border:none;
    border-radius:8px;
    outline:none;
    font-size:14px;
}
.contact-form textarea{
    height:120px;
    resize:none;
}
.contact-form button{
    background:#fff;
    color:#006cb5;
    border:none;
    padding:14px 32px;
    border-radius:30px;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
}
.contact-form button:hover{
    background:#eaf3fb;
}

/* ============ VIDEO GALLERY ==========*/
/* Gallery Layout */
.videogallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px 5%;
}

/* Video Card */
.video-card {
    width: 30%;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Iframe Container */
.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Ratio */
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Title */
.video-title {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.7);
    font-weight: 500;
}

/* Responsive */
@media(max-width: 900px){
    .video-card { width: 45%; }
}

@media(max-width: 600px){
    .video-card { width: 90%; }
}
/*==========VIDEO GALLERY END ==========*/

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .details-container,
    .contact-grid{
        grid-template-columns:1fr;
    }
}

	
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.prayer{
    list-style:none;
    max-width:1000px;
    padding:0;
    margin:0;
  
  justify-content: center;
    padding: 0; /* Removes default left padding */
  margin: 0; /* Removes default margins */
		
}

ul.prayer li{
    background:#ffffff;
    padding:12px 16px;
    margin-bottom:10px;
	margin-left:200px;
    border-radius:8px;
    border-left:0px solid #006cb5;
    box-shadow:0 2px 6px rgba(0,0,0,0.06);
    font-size:16px;
	font-weight:600;
	color:#333;
    transition:0.3s;

}

ul.prayer li:hover{
    background:#f0f6ff;
    transform:translateX(4px);
}

ul.training-list{
    list-style:none;
    max-width:500px;
    padding:0;
    margin:0;
	
}

ul.training-list li{
    background:#ffffff;
    padding:5px 5px;
    margin-bottom:10px;
	margin-left: 5px;
    border-radius:4px;
    border-left:0px solid #006cb5;
    box-shadow:0 2px 6px rgba(0,0,0,0.06);
    font-size:14px;
	font-weight:400;
	color:#333;
    transition:0.3s;
}

ul.training-list li:hover{
    background:#f0f6ff;
    transform:translateX(4px);
}

ul.clean-list{
    list-style:none;
    max-width:900px;
    padding:0;
    margin:0;
	
}

ul.clean-list li{
    background:#ffffff;
    padding:12px 16px;
    margin-bottom:10px;
	margin-left:100px;
    border-radius:8px;
    border-left:0px solid #006cb5;
    box-shadow:0 2px 6px rgba(0,0,0,0.06);
    font-size:16px;
	font-weight:600;
	color:#333;
    transition:0.3s;
}

ul.clean-list li:hover{
    background:#f0f6ff;
    transform:translateX(4px);
}

ul.clear-list{
    list-style:none;
    max-width:800px;
    padding:25px 25px;
  	margin-left:300;
}

ul.clear-list li{
    background:#ffffff;
    padding:12px 16px;
    margin-bottom:10px;
    border-radius:8px;
    border-left:0px solid #006cb5;
    box-shadow:0 2px 6px rgba(0,0,0,0.06);
    font-size:15px;
	color:#333;
    transition:0.3s;
}

ul.clear-list li:hover{
    background:#f0f6ff;
    transform:translateX(4px);
}

p {
  font-size: 14px;
  color: #444;
  line-height: 24px;
  left: 0.5px;
}

.content-row {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }
.side-text {
        flex: 1;
        font-size: 14px;
        color: #444;
        line-height: 1.7;
    }
	
section {
  padding-top: 60px;
}

.section-container {
        max-width: 1130px;
        margin: auto;
        padding: 0 15px;
    }
 .top-box {
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        text-align: center;
        margin: 1px;
        line-height: 1.6;
        font-size: 16px;
    }
	
.section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.section-heading span {
  font-size: 18px;
  display: block;
  margin: 0px;
  color: #006db5;
}

.section-heading h2 {
  margin-bottom: 0px;
  margin-top: 14px;
  font-size: 28px;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.5px;
}

.section-heading h3 {
  margin-bottom: 0px;
  margin-top: 14px;
  font-size: 24px;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.5px;
}


.blue-button a {
  display: inline-block;
  background-color: #006db5;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border: 2px solid #6883ff;
  transition: all 0.5s;
}

.blue-button a:hover {
  background-color: transparent;
  color: #006db5;
}


/* Header Style */

.cf:before, 
.cf:after {
  content: '';
  display: table;
  visibility: hidden;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #b4b4b4;
  color: white;
  cursor: pointer;
  padding: 15px 18px;
  border-radius: 10%;
}

#scrollTopBtn:hover {
  background-color: #006db5;
}

#header {
  overflow: visible;
  position: relative;
  background-color: #fff;
}


#primary-nav-button {
  background: transparent;
  display: none;
  position: absolute;
  border: none;
  bottom: 0;
  right: 15px;
  top: 0;
  z-index: 9;
  padding: 0;
  outline: none;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 0;
}

#primary-nav-button:hover {
  background: rgba(0,0,0,0.05);
}

#primary-nav-button.selected {
  background: rgba(0,0,0,0.1);
}

#primary-nav-button:before {
  /* content: 'â˜°'; */
  content: '\2261';
  display: inline-block;
  background-color: #006db5;
  font-size: 36px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.05;
  width: 100px;
  height: 100px;
  line-height: 100px;
  color: inherit;
  speak: none;
  border: none;
}

#header .logo {
  float: left;
}

#header .logo img {
  width: 80%;
  overflow: hidden;
}

/* NGO LOGO ANIMATION Section Wrapper */
/* Section Wrapper */
.ngo-section {
    margin: 0 200px;
    padding: 40px 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 15px;
}

/* Common Row Style */
.ngo-row {
    overflow: hidden;
    margin-bottom: 30px;
}

/* Scrolling Container */
.ngo-slider {
    display: flex;
    width: max-content;
}

/* Row 1 Speed */
.row1 .ngo-slider {
    animation: scroll-left 25s linear infinite;
}

/* Row 2 Different Speed */
.row2 .ngo-slider {
    animation: scroll-left 35s linear infinite;
}

/* Row 3 Different Speed */
.row3 .ngo-slider {
    animation: scroll-left 35s linear infinite;
}

/* Pause on Hover */
.ngo-row:hover .ngo-slider {
    animation-play-state: paused;
}

/* ngo Box */
.ngo-box {

    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    margin: 15px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.ngo-box:hover {
    transform: scale(1.05);
}

/* ngo Image */
.ngo-box img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
}

/* Animation */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.menu {
  float: left;
}

.menu li {
  float: left;
  margin-left: 10px;
  position: relative;
  line-height: 90px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu .sub-menu li {
  width: 100%;
  margin-left: 0px;
}

.menu li a {
  display: block;
  text-decoration: none;
}

#primary-nav li a {
  color: #121212;
 
  line-height: 100px;
  padding: 0px 10px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
}

#primary-nav li > a:hover,
#primary-nav li.selected > a {
  color: #006db5;
}

.sub-menu {
  border-top: 3px solid #006db5;
}

.sub-menu li a {
  line-height: 50px!important;
  font-size: 14px!important;
  color: #7a7a7a;
}

.downarrow {
    background: none;
    display: inline-block;
  padding: 0;
    text-align: center;
    min-width: 3px;
}

.sub-menu .downarrow {
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 18px;
  padding-right: 10px;
}

.downarrow:before {
  content: '\25be';
  color: inherit;
  display: block;
  font-size: 1em;
  line-height: 1.1;
  width: 1em;
  height: 1em;
}

.menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  max-height: 1000px;
}

.menu .sub-menu li {
  line-height: 40px;
}

.menu .sub-menu.hide {
  display: none;
}

#primary-nav .sub-menu {
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.25);
  min-width: 160px;
  z-index: 200;
}

#primary-nav .sub-menu li {
  border-bottom: 1px solid #ddd;
}

#primary-nav .sub-menu li:last-child {
  border-bottom: 0;
}

#primary-nav .sub-menu .downarrow:before {
  content: '\25b8';
}

/* ===== DESKTOP VIEW ===== */ 
#primary-nav.mobile {
  display: none;
  position: fixed;
  top: 60px;
  background: #fff;
  width: 90%;
  height: auto;
  left: 0;
  z-index: 999999;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#primary-nav.mobile .menu {
  text-align: left;
  width: 100%;
}

#primary-nav.mobile li {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #ddd;
}

#primary-nav.mobile li:first-child  {
  width: 100%;
  margin: 0;
  border-top: 1px solid #ddd;
}

#primary-nav.mobile li.selected > a {
  border-bottom: 1px solid #ddd;
}

#primary-nav.mobile li:last-child {
  border: none;
}


#primary-nav.mobile .sub-menu {
  float: left;
  position: relative;
  width: 100%;
}

#primary-nav.mobile .sub-menu .downarrow {
  top: 5px;
  position: absolute;
  right: 15px;
}

.mobile .downarrow,
.mobile .sub-menu .downarrow {
  position: absolute;
  top:22px;
  right: 25px;
}

#primary-nav.mobile .sub-menu .downarrow:before {
  content: '\25be';
}
#primary-nav-button.mobile {
  display: inline-block;
}

/* Banner Style */

section.banner {
  padding: 0px;
}

.banner {
  background-image: url(../img/main_banner.jpg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .banner-caption {
  padding: 200px 0px;
}

.banner .banner-caption .line-dec {
  width: 80px;
  height: 3px;
  background-color: #006db5;
}

.banner .banner-caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 42px;
  letter-spacing: 0.5px;
  color: #fff;
}

.banner .banner-caption span {
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.5px;
}

.banner .banner-caption .blue-button {
  margin-top: 30px;
}

.banner .submit-form {
  border-bottom: 5px solid #006db5;
  background-color: #fff;
  padding: 15px;
}

.submit-form .first-item {
  border-right: 1px solid #ddd;
}

.submit-form .second-item {
  border-right: 1px solid #ddd;
}

.submit-form .third-item {
  border-right: 1px solid #ddd;
}

.submit-form select {
  width: 100%;
  height: 50px;
  border: none;
  background-color: transparent;
  font-size: 15px;
  color: #9a9a9a;
  outline: none;
  padding: 0px 10px;
  display: inline-block;
}

.submit-form input {
  width: 100%;
  height: 50px;
  border: none;
  background-color: transparent;
  font-size: 15px;
  color: #9a9a9a;
  outline: none;
  padding: 0px 10px;
  display: inline-block;
  box-shadow: none;
}

.submit-form input:focus{
  border-width: 0px;
  outline:0; /* I have also tried outline:none */
  -webkit-appearance:none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.submit-form button {
  width: 100%;
  height: 50px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  border-radius: 0px;
  background-color: #006db5;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 600;
  border: 2px solid #006db5;
  transition: all 0.5s;
}

.submit-form button:hover {
  background-color: transparent;
  color: #006db5;
}

.popular-places .owl-nav {
  display: none;
}

.popular-places .owl-dots {
  margin-top: 40px;
  text-align: center;
}

.popular-places .owl-dots .owl-dot span  {
  width: 12px;
  height: 12px;
  background-color: #cdcdcd!important;
  display: inline-block;
  border-radius: 50%;
  margin: 0 3px;
}

.popular-places .owl-dots .active span {
  background-color: #006db5!important;
}

.popular-places .owl-dots button {
  outline: none;
}

.popular-places .popular-item .thumb {
  position: relative;
}

.popular-places .popular-item .thumb img {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
}

.popular-places .popular-item .thumb .text-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 9;
  color: #fff;
}

.popular-places .popular-item .thumb .text-content h4 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.popular-places .popular-item .thumb .text-content span {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  display: block;
}

.popular-places .popular-item .thumb .plus-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9;
}


.popular-places .popular-item .thumb .plus-button i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  transition: all 0.5s;
}

.popular-places .popular-item .thumb .plus-button i:hover {
  background-color: rgba(250,250,250,0.3);
}



section.featured-places {
  margin-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f4f4;
}

.featured-places .featured-item .thumb {
  position: relative;
  z-index: 1;
}

.featured-places .featured-item .thumb img {
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.featured-places .featured-item .thumb .overlay-content {
  position: absolute;
  z-index: 9;
  top: 30px;
  left: 30px;
  color: #fff;
}

.featured-places .featured-item .thumb .overlay-content li {
  display: inline;
  margin-right: 3px;
}

.featured-places .featured-item .thumb .date-content {
  position: absolute;
  z-index: 9;
  top: 30px;
  right: 30px;
  color: #fff;
  text-align: center;
  width: 90px;
  height: 90px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  background-color: #006db5;
  border-radius: 50%;
}

.featured-places .featured-item .thumb .date-content h6 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.featured-places .featured-item .thumb .date-content span {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.5px;
}

.featured-places .featured-item .down-content {
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  padding: 20px 20px 0px 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.featured-places .featured-item .down-content h4 {
  margin-top: 0px;
  font-size: 19px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 5px;
}

.featured-places .featured-item .down-content span {
  display: block;
  font-size: 13px;
  color: #006db5;
  margin-bottom: 15px;
}

.featured-places .featured-item .down-content p {
  margin-bottom: 20px;
}

.featured-places .featured-item .down-content .col-md-6 {
  padding-left: 0px;
  padding-right: 0px;
}

.featured-places .featured-item .down-content .text-button {
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #ddd;
  margin: 0px -5px;
}

.featured-places .featured-item .down-content .first-button {
  border-right: 1px solid #ddd;
}

.featured-places .featured-item .down-content .text-button a {
  font-size: 12px;
  text-transform: uppercase;
  color: #7a7a7a;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: all 0.5s;
}

.featured-places .featured-item .down-content .text-button a:hover {
  color: #006db5;
}

section.our-services .service-item {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 50px 30px;
}

section.our-services .service-item .icon img {
  max-width: 100%;
}

section.our-services .service-item h4 {
  font-size: 19px;
  font-weight: 600;
  color: #232323;
  margin-top: 30px;
  margin-bottom: 15px;
}

.our-services .left-content h4 {
  font-size:  19px;
  font-weight:  600;
  color:  #232323;
  margin-top: 0px;
  margin-bottom:  25px;
}

.our-services .left-content .blue-button {
  margin-top: 25px;
}

.down-services {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding-top: 60px;
}
.accordion li {
  position: relative;
}
.accordion li a {
  border: 1px solid #ddd;
}
.accordion li:last-child a {
  
}
.accordion li p {
  display: none;
}
.accordion a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: #232323;
  user-select: none;
  padding: 15px 20px;
  text-decoration: none;
}
.accordion a:after {
  width: 15px;
  height: 15px;
  background-color: #ddd;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  content: " ";
  top: 22.5px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion p {
  margin: 0px;
  padding: 20px;
  border: 1px solid #ddd;
}

a.active:after {
  background-color: #006db5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}



section#video-container {
  margin-top: 80px;
}

#video-container  {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  z-index: 1;
}

#video-container video,
.video-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

#video-container .video-overlay {
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  width: 100%;
}

#video-container .video-content {
  z-index: 99999;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

#video-container .video-content .inner {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}

#video-container .video-content .inner span {
  font-size: 17px;
  display: block;
  margin: 0px;
  color: #fff;
}

#video-container .video-content .inner h2 {
  margin-bottom: 0px;
  margin-top: 14px;
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
}

#video-container .video-content .inner a {
  margin-top: 30px;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 56px;
  color: #fff;
  background-color: rgba(250,250,250,0.1);
  font-size: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
}



section.pricing-tables .table-item {
  text-align: center;
  background-color: #eeeeee;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 0px 0px 40px 0px;
}


section.pricing-tables .table-item .top-content {
  background-color: #006db5;
  padding: 20px;
  color: #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}


section.pricing-tables .table-item .top-content h4 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0px;
  margin-bottom: 0px;
}


section.pricing-tables .table-item .top-content h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 20px;
  margin-bottom: 10px;
}


section.pricing-tables .table-item ul {
  margin: 20px 0px!important;
}

section.pricing-tables .table-item ul li {
  margin: 10px 0px;
}

section.pricing-tables .table-item ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;
  text-decoration: none;
  transition: all 0.5s;
}


section.pricing-tables .table-item ul li a:hover {
  color: #006db5;
}


section.contact .section-heading {
  margin-top: 60px;
  margin-bottom: 30px;
}

.wrapper {
  text-align: center;
}

/* Modal button */
.modal-btn {
  display: inline-block;
  background-color: #006db5;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  text-decoration: none;
  border: 2px solid #006db5;
  transition: all 0.5s;
}
.modal-btn:hover {
  background-color: transparent;
  color: #006db5;
}

/* Modal */
.modal {
  background-color: rgba(0,0,0,.65);
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 1000;
  padding-top: 10%;
  padding-bottom: 10%;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.modal-content .section-heading {
  text-align: left;
  margin-top: 0px!important;
}
.modal-content .section-heading h2 {
  margin-top: 10px;
}

.modal-content .left-content {
  padding: 30px;
}

.modal-content .left-content input {
  border-radius: 0px;
  padding-left: 15px;
  font-size: 13px;
  color: #aaa;
  background-color: #f4f4f4;
  border: 1px solid #eee;
  outline: none;
  box-shadow: none;
  line-height: 40px;
  height: 40px;
  width: 100%;
  margin-bottom: 25px;
}

.modal-content .left-content textarea {
  border-radius: 0px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #aaa;
  background-color: #f4f4f4;
  border: 1px solid #eee;
  outline: none;
  box-shadow: none;
  min-height: 140px;
  height: 160px;
  max-height: 180px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 25px;
}

.modal-content .left-content button {
  display: inline-block;
  background-color: #006db5;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 0px;
  border: 2px solid #006db5;
  transition: all 0.5s;
}

.modal-content .left-content button:hover {
  background-color: transparent;
  color: #006db5;
}

.modal-content .right-content {
  background-color: #006db5;
  padding: 30px 30px 65px 30px;
  color: #fff;
}

.modal-content .right-content .section-heading h2 {
  color: #fff;
}

.modal-content .right-content .section-heading span {
  color: #fff;
}

.modal-content .right-content p {
  margin-bottom: 50px;
  color: #fff;
}

.modal-content .right-content ul li span {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 80px;
  display: inline-block;
}

.modal-content .right-content ul li a {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.modal-content .right-content ul li {
  margin: 10px 0px;
}

/* Modal Content */
.modal-content {
  position: relative;
  top: 0px;
  width: 60%;
  margin: 0 auto;
  background-color: #fff;
  //background-color: #fff;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.modal-animated-in {
  animation: totop-in .3s ease;
}
.modal-animated-out {
  animation: totop-out .3s ease forwards;
}
.modal-content .close {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  background-color: #fff;
  color: #006db5;
  border-radius: 50%;
  opacity: 1;
}

.modal-content .close:hover {
  background-color: #fff;
  color: #006db5;
}

/* Keyframes */
@keyframes totop-in {
  0% {
    top: 600px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }  
}

@keyframes totop-out {
  0% {
    top: 0px;
    opacity: 1;
  }
  100% {
    top: -100%;
    opacity: 0;
  }  
}



footer {
  margin-top: 80px;
  padding: 80px 0px 70px 0px;
  border-top: 1px solid #ddd;
}

footer .footer-heading h4 {
  font-size: 21px;
  color: #232323;
  letter-spacing: 0.5px;
  margin-top: 15px;
  margin-bottom: 40px;
}


footer .about-veno .logo {
  margin-bottom: 40px;
}

footer .about-veno ul li a {
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  line-height: 32px;
  background-color: #cdcdcd;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  margin-right: 3px;
  transition: all 0.5s;
}

footer .about-veno p {
  margin-bottom: 25px;
}

footer .about-veno ul li a:hover {
  background-color: #006db5;
}

footer .useful-links ul li {
  margin-bottom: 12px;
}

footer .useful-links ul li a {
  font-size: 15px;
  color: #7a7a7a;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.5s;
}

footer .useful-links ul li a:hover {
  color: #006db5;
}

footer .useful-links ul li i {
  color: #006db5;
  font-size: 6px;
  position: relative;
  top: -3px;
  margin-right: 8px;
}

footer .contact-info p {
  margin-bottom: 25px;
}

footer .contact-info ul li {
  margin: 10px 0px;
}

footer .contact-info ul li span {
  font-size: 16px;
  color: #7a7a7a;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 80px;
  display: inline-block;
}

footer .contact-info ul li a {
  font-size: 16px;
  color: #006db5;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.sub-footer p {
  text-align: center;
  display: inline-block;
  background-color: #f4f4f4;
  width: 100%;
  margin-bottom: 0px;
  padding: 30px 0px;
  font-size: 15px;
  color: #aaaaaa;
}

.sub-footer a {
  text-decoration: none;
  color: #006db5;
}


@media (max-width:992px) {

  .banner .banner-caption {
    padding: 200px 30px;
  }

  .submit-form input {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
  }

  .submit-form select {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
  }

  .featured-places .featured-item {
    margin-bottom: 30px;
  }

  .featured-places .featured-item .down-content .first-button {
    border-right: none;
  }

  section.our-services .service-item {
    margin-bottom: 30px;
  }

  .down-services .left-content {
    margin-bottom: 60px;
  }

  #video-container .video-content {
    padding: 0 30px;
    text-align: center;
  }

  .table-item {
    margin-bottom: 30px;
  }

  .modal-content {
    width: 90%;
  }
  .modal-content .close {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
  }

  footer .useful-links {
    margin-top: 60px;
  }

  footer .contact-info {
    margin-top: 60px;
  }
  
}