 
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

hr{
    border: none;
    height: 1px;
    background: #e2e6ea;
    margin: 0rem 0;
  }

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    transition: .5s;
}

a{
    text-decoration: none;
}

.btn-primary,
.btn-secondary {
    color: #FFF;
    background-color: #ff1c00;
    border:none;
    box-shadow: inset 0 0 0 50px transparent;
    border-radius: 0;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
p{
    font-family: "Roboto", sans-serif;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: "Oswald", sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 24px 7px;
    color: #224395;
    font-size: 18px;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

.navbar-nav .nav-item .dropdown-item {
    display: block;
    width: 100%;
    padding: 4px 15px;
    clear: both;
    font-weight: 400;
    font-family: 'Oswald';
    font-size: 18px;
    color: #0b4481;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: #fff;
    border: 0;
    border-radius: 0px;
}

.navbar-nav .nav-item .dropdown-menu {
    border:none;
    margin: 0;
    box-shadow: 0px 2px 6px #00000052;
}


.navbar-nav .nav-item .dropdown-item:hover {
    color: #fff;
    background-color: #091E3E;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ff1c00 !important;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0px;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        background: #FFFFFF;
        box-shadow: 0px 2px 7px #0f48818f;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #ff1c00;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #ff1c00;
    color: #fff;
    border: none;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

/* Hero Carousel Css */ 

.hero-section{
    position: relative;
}
.hero-section .hero-top{
    position: absolute;
    left: -30px;
    z-index: 5;
}
.hero-section .hero-top-bottom{
    position: absolute;
    top: 100px;
    left: -196px;
    z-index: 5;
}
.hero-section .hero-top-bottom{
    animation: img_spin 8s infinite linear;
    -webkit-animation: img_spin 8s infinite linear;
}
@keyframes img_spin{
	0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
} 
.hero-carousel .hero-item{
    position: relative;
    overflow: hidden;
    height: 350px;
}
.hero-carousel .hero-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-carousel .hero-item .hero-img-overlay{
    position: absolute;
    top: 50%;
    left: 3%;
    right: 3%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    height: 100%;
    z-index: 6;
}
.hero-carousel .hero-item .hero-content{
    position: absolute;
    z-index: 999;
}
.hero-carousel .hero-item .hero-content .hero-title{
        color: #fff;
        font-family: "Rowdie", sans-serif;
        font-size: 61px;
}
.hero-carousel .hero-item .hero-content p{
    font-size: 19px;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    color:#fff;
}
.hero-carousel .hero-item .hero-content .btn{
    display: inline-flex;
    color: #fff;
    background-color: #ff1e02;
    align-items: center;
}
.hero-carousel .hero-item .hero-content .btn-accent:hover{
    color: #000;
    border-color: #fff;
    background-color: #fff;
}
.hero-carousel .hero-content {
    transform: translateY(60px);
    transition: all 0.3s ease;
}
.hero-carousel .hero-content span {
       color: #fff;
}

.hero-carousel .hero-content.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}
@keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(60px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
.hero-carousel.owl-carousel .owl-nav button.owl-prev, .hero-carousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px !important;
    height: 61px !important;
    font-size: 39px;
    color: #fff;
    background: #00000080;
    margin: 0;
}

.hero-carousel.owl-carousel .owl-nav button.owl-prev {
       float:left;
       left:0%;
}

.hero-carousel.owl-carousel .owl-nav button.owl-next {
        float:right;
        right:0%;
}

.hero-carousel.owl-carousel .owl-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
} 

/* Hero Carousel Css Ends */

/* About Us Css */
.header-section {
    position: relative;
}
.home-about-section .about-img-box {
    position: relative;
}

.home-about-section .about-img-box img {
    margin-left: 4rem;
    margin-bottom: 3rem;
}
.section .eyebrow-title {
    display: inline-flex;
}
.double-line{
    position: relative;
    margin-right:0.5rem;
    padding-left:  1.75em;
}
.double-line::before {
    top: .5rem;
    width: 1.625rem;
}
.double-line::before, .double-line::after {
    content: '';
    position: absolute;
    right: 0;
    height: .125rem;
    background-color: #ff1c00;
}
.double-line::after {
    top: .875rem;
    width: 1.25rem;
}
.double-line::before, .double-line::after {
    content: '';
    position: absolute;
    right: 0;
    height: .125rem;
    background-color: #ff1e02;
}
.eyebrow-title {
    position: relative;
    display: block;
    color: #ff1c00;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: .75rem;
}


.home-about-section .about-img-box .img-caption {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 200px;
    background-color: #032c59;
}
.home-about-section .about-img-box .img-caption .caption-title {
    position: relative;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.home-about-section .about-img-box .img-caption .caption-title span { 
      font-size:97px;
}

.home-about-section .about-img-box .img-caption .caption-title::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -10px;
    width: 32px;
    height: 88%;
    border: 2px solid #fff;
    border-left: none;
}

.about-content ul {
    margin-left: -2rem; 
    font-family: "Roboto", sans-serif;
}

.about-content ul li {
	position: relative;
	padding: 10px 15px 10px 35px; 
	margin-bottom: 0px;
	font-size: 15px;
    list-style: none;
	color: #444;
	line-height: 1.6;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.about-content ul li::before {
    content: "\2622";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 30%;
    /* transform: translateY(-79%); */
    color: #ff1c00;
    font-size: 16px;
  }

  .btn-accent, .btn-ol-accent {
    border-color: #ff1c00;
    border-width: 2px;
}  

.btn-accent, .btn-ol-accent:hover {
    border-color: #ff1c00;
    border-width: 2px;
    color:#fff;
    background-color: #ff1c00;
} 

.section-header h1 {
    font-size: 35px;
    color: #023469;
    font-family: "Oswald", sans-serif;
    line-height: 46px;
    font-weight: 500;
    text-shadow: 0px 2px 2px #00000061;
}
.section-header h2{
    font-size: 35px;
    color: #023469;
    font-family: "Oswald", sans-serif;
    line-height: 46px;
    font-weight: 500;
    text-shadow: 0px 2px 2px #00000061;
}

/* About Us Ends */ 
/* Service Section Started */

/* Featured Css */
.featured-sec {
    padding: 0;
    position: relative;
}
.featured-sec .featured-inner {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}
.feature-block {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    margin:10px;
}
.feature-block .inner-box:hover .icon-box .icon {
    color: #fff;
    -webkit-text-fill-color: inherit;
}
.feature-block .inner-box:hover .text,
.feature-block .inner-box:hover h5 a {
    color: #fff;
}
.feature-block .inner-box:hover h5::before {
    background-image: -ms-linear-gradient(left, #fff 0, #fff 100%);
    background-image: -moz-linear-gradient(left, #fff 0, #fff 100%);
    background-image: -o-linear-gradient(left, #fff 0, #fff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(100, #fff));
    background-image: -webkit-linear-gradient(left, #fff 0, #fff 100%);
    background-image: linear-gradient(to right, #fff 0, #fff 100%);
}
.feature-block .inner-box:hover .text,
.feature-block .inner-box:hover h5 a {
    color: #fff;
}
.feature-block .inner-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    background-image: -ms-linear-gradient(bottom, #d1641a 0, #c2292a 100%);
    background-image: -moz-linear-gradient(bottom, #d1641a 0, #c2292a 100%);
    background-image: -o-linear-gradient(bottom, #d1641a 0, #c2292a 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d1641a), color-stop(100, #c2292a));
    background-image: -webkit-linear-gradient(bottom, #d1641a 0, #c2292a 100%);
    background-image: linear-gradient(to top, #000 0, #e11c09  100%);
}
.feature-block .inner-box {
    position: relative;
    padding: 12px 15px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 
}
.feature-block .image-box {
    position: relative;
    overflow: hidden;
} 

.feature-block .image-box img{
    width:100%;
    height:230px; 
    overflow: hidden;
    object-fit: cover;
} 

.feature-block .inner-box h5::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 44px;
    background-image: -ms-linear-gradient(left,#000 0, #e11c09 100%);
    background-image: -moz-linear-gradient(left, #000 0, #e11c09 100%);
    background-image: -o-linear-gradient(left, #000 0, #e11c09 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(100, #e11c09));
    background-image: -webkit-linear-gradient(left,#000 0, #e11c09 100%);
    background-image: linear-gradient(to right, #000 0, #e11c09 100%);
}
.feature-block .inner-box h5 {
    position: relative;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
}
.feature-block .inner-box h5 a {
    position: relative;
    color: #222; 
    line-height: 1.3em;
    font-size: 18px;
    text-decoration: none;
    font-family: "Oswald", sans-serif; 
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.feature-block .inner-box .text {
    position: relative;
    color: #222;
    font-size: 16px;
    font-family:"Inter", sans-serif;
    line-height: 1.8em;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-block .inner-box .arrow-box {
    position: absolute;
    right: -40px;
    bottom: -25px;
    width: 50px;
    height: 50px;
    opacity: 0;
    color: #e11c09;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}
.feature-block .inner-box:hover .arrow-box {
    right: 30px;
    opacity: 1;
}
.feature-block .inner-box:hover::before {
    width: 100%;
}
/* Featured Css Ends */
/* Service Sec Ends */

/* Workshop */
.workshop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .workshop-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
  }
  .workshop-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  }
  .workshop-box i {
    font-size: 40px;
    color: #0d4382;
    margin-bottom: 10px;
  }
  .workshop h3{
       font-size: 20px;
       font-weight: 500;
       color:#000;
       font-family: "Oswald", sans-serif;
  }
/* workshop Ends */

/* why Us css */
.why-section{
    position: relative;
}
.why-section .video-container {
       position: relative;
       overflow: hidden;
}
.why-section .video-container img{
      width: 100%;
      height: 600px;
      object-fit: cover;
}
.why-section .video-container .btn-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.why-section .video-container .btn-box .play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2.5rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #fff;
}
.why-section .video-container .btn-box .play-btn i {
    margin-left: 8px;
}
.why-section .video-content .card .card-body {
         padding:0;
}
.why-section .video-content .card .card-body h3 {
          color:#fff;
          font-size: 20px;
}
.why-section .video-content .card .card-body p {
    margin-bottom: 0;
    color: #fff;
}
.video-section .video-content .card {
    padding: 1.5rem;
    height: 100%;
}
.video-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Why Us Ends */
 

/* Gallery css Started */

.our-gallery-page {
	padding: 50px 0 50px;
}

.photo-gallery {
	margin-bottom: 30px;
	border-radius: 0px;
	overflow: hidden;
}


.photo-gallery figure {
	position: relative;
}

.photo-gallery figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #00000094;
	border-radius: 0px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.photo-gallery:hover figure::before {
	opacity: 80%;
	visibility: visible;
	transform: scale(1);
}

.photo-gallery figure::after {
	content: '+';
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0px 102px;
    color:#fff;
    justify-content: center;
    font-size: 69px; 
	border-radius: 0%;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.photo-gallery:hover figure::after {
	opacity: 1;
	visibility: visible;
}

.photo-gallery img {
	position: relative;
	aspect-ratio: 1 / 0.95;
	object-fit: cover;
	border-radius: 0px;
}


/* Gallery Section Ends */


/* Testimonial Slider */
.testimonial-section {
    position: relative;
    background-color: #000000;
}
.testimonial-slider{
   position: relative; 
   display: block;
   padding: 0;
   margin:0;
}
.testimonial-title h2{
   padding-top: 20px;
    font-size: 40px;
    font-family:"Poppins", sans-serif;
    line-height: 1.5;
    color:#fff;
    text-shadow: 0px 2px 3px #0000003f;
}

.testimonial-title p{
    font-size: 14px; 
    font-weight: 300;
    padding: 58px 33px 20px 0px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}
.testimonial-content{
   position: relative; 
    padding: 10px
}
.testimonial-info{
   position: relative;
   padding-left: 110px;
   min-height: 87px;
   padding-top: 15px;
}
.testimonial-info .thumb-item {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 75px;
   height: 75px;
   overflow: hidden;
   border-radius: 0px;
}

.thumb-item .thumb-box img{
    display: block;
    height: 100px;
    width: 100%;
    object-fit: cover;  
}
.testimonial-info .author-name  {
   position: relative;
   color: #fff;
   font-family: "Poppins", sans-serif; 
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 4px;
}
.testimonial-info .rating {
   position: relative;
   display: flex; 
   color: #b10c0c;
}

.testimonial-box {
    position: relative; 
    padding:30px 20px;
    margin: 11px 11px;
    background-image: url(..//img/testimonial.png); 
    object-fit: contain;
    border: 1px solid #575c61;
    background-position: center;
}

.testimonial-text {
   position: relative;
   color: #fff;
   font-size: 15px;
   font-weight: 400;
   font-style: italic;
   font-family: "Poppins", sans-serif; 
   line-height: 1.9em;
   margin-top: 20px;
   margin-bottom: 20px;
}


.testimonial-slider.owl-carousel .owl-nav button.owl-next, .testimonial-slider.owl-carousel .owl-nav button.owl-prev  {
   background: 0 0;
   color: #fff;
   border: 1px solid #ccc;
   padding: 4px 16px !important;
   font: inherit;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next:hover, .testimonial-slider.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #0d3f83;
    color: #fff;
}
/* Testimonial  Section Ends */

/* Footer Css */ 
.footer-bg{
      background-image: url(..//img/bg/footer.jpg);
      background-attachment: fixed;
      background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
}
.footer-link a{
      text-decoration: none;
}
.footer-link a i {
      color: #fff;
}
/* Footer Css Ends */

/* Page Title Started */

.page-title {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 170px 0px 25px;
}

.page-title_bg-image {
	position: absolute;
	left: 0px;
	top: 20px;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	border-radius: 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    z-index: -1;
}

.page-title_bg-image:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.70;
	background-color: #030721;
}

.page-title h1 {
	color: #fff;
	text-transform: capitalize;
	font-size: 50px;
	font-weight: 500;
	text-shadow: 0px 2px 2px rgb(0 0 0 / 38%);
	font-family: "Outfit", sans-serif;
}

.page-title .bread-crumb {
	position: relative;
	margin-top: 20px;
	margin-bottom: 95px;
}

.page-title .bread-crumb li {
	position: relative;
	font-weight: 500;
	font-size: 18px;
    text-align: center;
    padding-right:10px;
    margin-right:10px;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
}

.page-title .bread-crumb li:first-child::before {
	position: absolute;
	right: -6px;
	top: -4px;
	content: "/";
	font-size: 22px;
	font-family: 'Font Awesome 6 Free';
}

.page-title .bread-crumb li:last-child {
	padding-right: 0;
	margin-right: 0;
}

.page-title .bread-crumb li:last-child:before {
	display: none;
}

.page-title .bread-crumb li a {
	color: var(--white-color);
	text-decoration: none;
}

.page-title .bread-crumb li a:hover {
	color: var(--main-color);
}

/* Page Title Ends */

/* CTN Started */
.ctn-section{
    width: 100%;
    background-color: #f7fafd;
    position: relative;
}
.ctn-section figure img {
    width: 60%;
}
.ctn-text{
    margin-top: 35px;
}
.ctn-section h3 {
    font-size: 40px;
    font-family: "Oswald", sans-serif;
    margin-bottom: 16px;

}

.ctn-section h2 {
    font-size: 30px;
    font-family: "Oswald", sans-serif;
    color:#ff1c00;
}

/* ctn eNDS */

/* Contact Us Started */

.contact-details{
    border: 2px solid #02182f;
    padding: 20px;
    width: 100%;
    height: 205px;
    box-shadow: 2px 5px 8px 2px #1204048f;
  }
  .contact-details i  {
    font-size: 45px;
    padding-right: 10px;
    color: #ff1c00;
  }

  .contact-details h4{
      font-family:"Oswald", sans-serif;
  }
  .contact-details h6 a {
      text-decoration: none;
      color: #000;
      line-height: 1.5;
      font-weight: 400;
      font-family: "Roboto", sans-serif;
  }
  .contact-details p {
    font-size: 15px;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
  }
  .contact-image {
    background: url('..//img/services/2.jpg') center center/cover no-repeat;  
    min-height: 400px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
  }
  .overlay-text {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    margin-top: 208px;
    height: 193px;
    border-radius: 0px;
  }
  .overlay-text h2 {
    color: #fff;
    font-family: "Merriweather", sans-serif;
  }
  .overlay-text p{
        color: #FFFFFF;
        font-family: "Source Sans 3", sans-serif;
  
  }
  /* Contact Us Page Ends*/
/* Contact Us Ends */

/* Service Page */
.service-page{
     position: relative;
     margin:0;   
     padding: 50px 0px 60px;
}
.service-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    width: 100%;
    margin: 30px auto;
  }
  .service-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .service-content h2 {
    color: #0b4583;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Oswald';
}
.service-content p {
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
}

.service-content ul li{
       position: relative;
       display: block;
       list-style: none;
       font-family: "Roboto", sans-serif;
}

.service-content ul li i{
    position: relative;
    color: #ff1c00;
    margin-right: 13px;
}

  .appointment-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 60px;
    height: fit-content;
  }
  .appointment-form h3 {
    margin-bottom: 15px;
    color: #02182f;
    font-family: "Oswald", sans-serif;
    text-align: center;
  }
  .appointment-form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
  }
  .appointment-form input, 
  .appointment-form select, 
  .appointment-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  .appointment-form button {
    padding: 4px 30px;
    margin-top: 15px;
    border: none;
    background: #030721;
    border: 2px solid #030721;
    color: #fff;
    font-size: 16px;
    border-radius: 0px;
    cursor: pointer;
    transition: 0.3s;
  }
  .appointment-form button:hover {
    background: #fff;
    color: #030721;
    border: 2px solid #030721;
  }
/* Service Page Ends */





    /* Button */
    .open-btn {
      padding: 10px 20px;
      background: #2c263d;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    /* Modal Background */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    /* Modal Content */
    .modal-content {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      width: 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      position: relative;
    }

    .modal-content h2 {
      margin-top: 0;
      color: #2c263d;
      text-align: center;
    }

    /* Close Button */
    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: #333;
    }

    /* Form Inputs */
    .modal-content input, .modal-content textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .modal-content textarea {
      resize: none;
      height: 80px;
    }

    /* Submit Button */
    .modal-content button {
      width: 100%;
      padding: 12px;
      background: #2c263d;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 10px;
    }

    .modal-content button:hover {
      background: #42385e;
    }














/* Reponsive Css */
@media (min-width: 992px){ 
    .hero-carousel .hero-item{
        height: 600px;
    }
    .hero-carousel .hero-item .hero-content p {
        font-size: 19px;
        font-family: 'Oswald';
        font-weight: 300;
        letter-spacing: 1px;
    }
    .hero-carousel .hero-item .hero-img-overlay{
        left: 5%;
        right: 5%;
        width: 50%;
    }
    .hero-carousel.owl-carousel .owl-nav button.owl-prev, .hero-carousel.owl-carousel .owl-nav button.owl-next {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
    .home-about-section .about-img-box img {
        margin-left: 4rem;
        margin-bottom: 3rem;
    }
    .home-about-section .about-img-box .img-caption {
        padding: 1.75rem;
    }
    .home-about-section .about-content {
        padding-left: 4rem;
    }
    .why-section .video-content {
        height: 100%;
    }
    .why-section .video-content .card {
        padding: 1.5rem;
        background: #02182f;
        height: 100%;
        border-radius: 0;
    }
    .grid-lg-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 678px){
    .hero-carousel .hero-item{
        height: 500px;
    } 
    .hero-carousel .hero-item .hero-img-overlay{
        width: 100%;
    }
    .hero-carousel .hero-content {
        transform: translateY(50px);
    }
    .hero-section .hero-top-bottom,.hero-carousel .hero-item .hero-content p{
        display: block;
    }

    .hero-carousel .hero-item .hero-content .hero-title {
        font-size: 25px;
    }
    .hero-carousel .hero-item .hero-content {
        padding:15px;
    }

    .hero-carousel .hero-item .hero-img-overlay {
        width: 100%;
        left:0%;
        right:0%;
        background-color: #00000075;
    }
    .footer-about {
        margin-bottom: -75px;
    }

    .section-header h2 {
        font-size: 25px;
        line-height: 1.7 !important;
        color: #023469;
        font-family: "Oswald", sans-serif;
        line-height: 39px;
        font-weight: 500;
        text-shadow: 0px 2px 2px #00000061;
    }

    .home-about-section .about-img-box img {
        margin-left: 0rem;
        margin-bottom: 3rem;
    }

    .eyebrow-title {
        font-size: 15px;
    }
    .section-header h1 {
        font-size: 24px;
        line-height: 1.6 !important;
    }

    .why-section .video-content .card:nth-child(2), .why-section .video-content .card:nth-child(4) {
        color: #fff;
        background-color: #030721;
    }

    .why-section .video-content .card:nth-child(1), .why-section .video-content .card:nth-child(3) {
        color: #fff;
        background-color: #ff1c00;
    }
    .grid-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .why-section .video-content .card {
        padding: 1rem;
        border: none;
        border-radius: 0;
    }
    .ctn-section figure img {
        width: 100%;
    }
    .about-content ul li {
        font-family: "Roboto", sans-serif;
    }

    .page-title h1 { 
        font-size: 29px;
    }
    .page-title .bread-crumb li { 
        font-size: 14px;
    }
    .service-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-content h2 {
        color: #0b4583;
        font-size: 20px;
        line-height: 1.6;
    }

    .service-page ul{
        padding-left:0rem;
    }
    .service-content ul li {
        line-height: 1.9;
    }

    .photo-gallery figure::after {
        content: '+';
        position: absolute;
        top: 30%; 
        margin: 0px 134px
    }

    .overlay-text { 
        margin-top: 208px;
        height: 215px;
    }
}
 