header#site-header {
    display: none;
}

footer#site-footer {
    display: none;
}
.slider-section {
    position: relative; /* required for absolute overlay */
    overflow: hidden;   /* ensures overlay doesn't spill */
}

.slider-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* black with 40% opacity */
    z-index: 2;
    pointer-events: none; /* allows clicks to pass through */
}


.slider-section .n2-ss-slider .n2-ss-slide-background-image img {
    opacity: .8;
    width: 100% !important;
    transform-origin: 100% 0;
    /* -webkit-animation: immortalkenburns 20s linear 0s infinite alternate; */
    animation: immortalkenburns 20s linear 0s infinite alternate;
    background: #000;
	height:auto !important;
}
.slider-section .n2-ss-slide-backgrounds.n2-ow-all {
    background: #000;
}


@-webkit-keyframes immortalkenburns {
    0% {
        -webkit-transform: scale(1);
        -webkit-transition: -webkit-transform 20s linear 0s
    }
    100% {
        -webkit-transform: scale(1.2);
        -webkit-transition: -webkit-transform 20s linear 0s
    }
}

@-moz-keyframes immortalkenburns {
    0% {
        -moz-transform: scale(1);
        -moz-transition: -moz-transform 20s linear 0s
    }
    100% {
        -moz-transform: scale(1.2);
        -moz-transition: -moz-transform 20s linear 0s
    }
}

@-ms-keyframes immortalkenburns {
    0%,
    100% {
        -ms-transition: -ms-transform 20s linear 0s
    }
    0% {
        -ms-transform: scale(1)
    }
    100% {
        -ms-transform: scale(1.2)
    }
}

@-o-keyframes immortalkenburns {
    0% {
        -o-transform: scale(1);
        -o-transition: -o-transform 20s linear 0s
    }
    100% {
        -o-transform: scale(1.2);
        -o-transition: -o-transform 20s linear 0s
    }
}

@keyframes immortalkenburns {
    0% {
        transform: scale(1);
        transition: transform 20s linear 0s
    }
    100% {
        transform: scale(1.2);
        transition: transform 20s linear 0s
    }
}

.blog-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 30px;
}

.blog-card {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.blog-card-title {
  font-size: 20px;
  margin: 10px 0;
  color: #222;
  font-family: 'Roboto';
}

.blog-card-excerpt {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-family: 'Roboto';
}

.blog-card-readmore {
  display: inline-block;
  margin-top: 15px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.blog-card-readmore:hover {
  border-color: #000;
}

/*  */

/* Overall Layout */
.layout-with-sidebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: #f8f9fa;
}

/* Main Content */
.main-post-content {
  flex: 1 1 65%;
  max-width: 750px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sidebar */
.post-sidebar {
  flex: 1 1 25%;
  max-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: fit-content;
}

/* Sidebar Title */
.sidebar-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

/* Recent Posts */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.recent-post-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.recent-post-details {
  flex: 1;
}

.recent-post-date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.recent-post-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.recent-post-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  gap: 12px;
}

.recent-post-link:hover .recent-post-title {
  text-decoration: underline;
}

/* Featured Image */
.single-post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Post Meta */
.single-post-meta .post-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: block;
}

/* Title + Content */
.single-post-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #005987;
}
.single-post-content {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}
.single-post-content img {
  max-width: 100%;
  border-radius: 5px;
  margin: 20px 0;
}
.why-chose-list .elementor-icon-list-text span {
    color: #005987;
    font-weight: 700;
}
/* Footer */
.single-post-footer {
  margin-top: 40px;
}
.back-to-blog {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.back-to-blog:hover {
  border-color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .layout-with-sidebar {
    flex-direction: column;
    align-items: center;
  }
  .post-sidebar {
    max-width: 100%;
    margin-top: 40px;
  }
}


.testi-singal-slide {
    background: #fff;
    box-shadow: 1px 1px 10px 0px rgba(28.000000000000025, 91.00000000000004, 144.00000000000006, 0.22) inset;
    border-radius: 10px;
    padding: 30px 15px !important;
    
}
.slick-next:before,.slick-prev:before { color: #005987;}

/* contact us page */

.custom-contact-form h3 {
    color: #545454;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
}
.custom-contact-form {
  background: #F2F6FE; /* light blue */
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Heading */
.custom-contact-form h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

/* Form Row */
.custom-contact-form .form-row {
  display: flex;
  gap: 20px;
  
}

/* Field Wrapper */
.custom-contact-form .form-field {
  flex: 1;
}

.custom-contact-form .form-field.full-width {
  flex: 100%;
}

/* Input, Select, Textarea */
.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
	
}
/* Focus effect */
.custom-contact-form input:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
  outline: none;
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
  border: 1px solid #3b82f6;
}

/* Textarea height */
.custom-contact-form textarea {
  min-height: 110px;
}

/* Submit Button */
.custom-contact-form [type="submit"] {
  background: #005987;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
  transition: 0.3s;
	max-width: 150px;
}

.custom-contact-form [type="submit"]:hover {
  background: #2563eb;
  box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}
.visit-cont {
    border-radius: 10px;
    background: #F5F9FE;
    box-shadow: -4px -4px 8px 0px #FFF, 4px 4px 8px 0px #E2EBFC;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
    height: 240px;
}
/* Responsive */
@media (max-width: 768px) {
  .custom-contact-form .form-row {
    flex-direction: column;
  }
}
