@font-face {
    font-family: 'Nunito'; 
    src: url('/fonts/Nunito-Italic-VariableFont_wght.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* overflow-x: hidden; */
    /* font-family: ; */
}



.text-black{
    color: black !important;
}

.text-theme{
    color: #1366a3 !important;
}

.text-gradient{
    background: -webkit-linear-gradient(black, #1366a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link:hover {
    color: #3b60ad !important;
}


.navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 400;
}

/* slider-css */


.slider-container {
    width: 100%;
    height: 90vh; 
    overflow: hidden;
}

#hero-slider .slide {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    text-align: left; 
    color: white;
    width: 40% ; 
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    /* border: 5px solid red; */
}

.slide{
    /* border: 5px solid blue; */
}

.slide-content h1 {
    font-size: 35px;
    margin-bottom: 10px;
}

.slide-content h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 22px;
}

#hero-slider .slide {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center; 
    /* border: 5px solid blue; */
    position: relative;
    text-align: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%); 
    text-align: center; 
    width: 50%; 
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    /* border: 5px solid red; */
}



#typewriter {
    border-right: 2px solid black; /* Cursor effect */
    padding-right: 5px;
    animation: blink 0.8s infinite;
  }

  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

  



 /* button-css  */

 .custom-button {
    padding: 12px 24px;
    background: #3b60ad;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.custom-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.custom-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.custom-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.abt-us-image {
    height: 435px !important; 
    object-fit: cover;
  }

  @media (max-width: 768px) { 
    .abt-us-image {
      height: 290px !important; 
    }
  }

  @media (max-width: 480px) { 
    .abt-us-image {
      height: 200px;
    }
  }

  .custom-padding{
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .custom-padding2{
    padding-top: 6rem;
    padding-bottom: 6rem;
    /* padding-left: 4rem !important; */
    /* padding-right: 4rem !important; */
  }



  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: gray;
    border: none;
    margin: 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.carousel-indicators .active {
    background-color: black;
    opacity: 1;
}


/* testimonial */
.test-text{
    font-size: 25px;
}

.theme-color{
    color: #3b60ad;
}

.pagination-wrapper {
    margin-top: 50px;
}


.custom-bg {
    background-image: url('../images/test.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 400px; 
  }

  @media (max-width: 768px) {
    .custom-bg {
      background-attachment: scroll; 
    }
  }


  .footer-links{
    font-size: 18px;
  }

  .footer-links:hover {
    color: #3b60ad !important;
}


  .footer-content{
    font-size: 18px;
  }

  .footer-content {
    display: flex;
    align-items: center; 
    gap: 10px; 
  }


  /* product section */

  .hero-section {
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}



.hero-text {
    padding: 15px 25px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1rem;
    }
}

.full-width-video {
    width: 100%;
    height: 100vh; 
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
}

/* product-cards */

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.product-card h5 {
    text-align: center;
    padding: 15px;
    font-weight: bold;
    color: #333;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}


.image-container {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    position: relative;
}


.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}


.image-container:hover img {
    transform: scale(1.1);
}


/* navbar */

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none; 
    width: 30px;
    height: 3px;
    color: black; 
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}


/* .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
} */

.form-label{
    font-size: 18px;
}



.contact-card {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.info-item i {
    color: #3b60ad;
}

.card-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    /* text-align: center; */
}

.spanp{
    font-size: 19px;
}

.text-span{
    font-size: 18px;
}


/* mobile-nav */

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-items {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-items li {
    margin: 20px 0;
}

.menu-items a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #3b60ad;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}


@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}


.dropdown-vertical {
    background: white;
    border-radius: 8px;
    border: none;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
}


.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.dropdown-item {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
    text-transform: uppercase;
}


.nav-item.dropdown:hover .dropdown-vertical {
    display: block;
}

.dropdown-item.hover {
    background: #3b60ad !important;
    color: white !important;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: #3b60ad !important;
    color: white !important;
}

.dropdown-item:hover .arrow-icon i {
    color: white !important;
}


/* animation css */

.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-in-out;
}

.animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-in-out;
}

.animate-left.aos-animate, .animate-right.aos-animate {
    opacity: 1;
    transform: translateX(0);
}



/* overflow */
section{
    overflow-x: hidden;
    overflow-y: hidden;
}





.dropdown-menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-top: 10px;
}


.dropdown-menu-mobile.active {
    max-height: 250px; 
    overflow-y: auto;
}


.dropdown-menu-mobile::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu-mobile::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.dropdown-menu-mobile::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu-mobile .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.dropdown-menu-mobile .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.about-section {
    background-size: cover;
    background-position: center;
}


/* .flip-card {
    width: 100%;
    height: auto;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
}

.flip-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
} */


.custom-padding {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}


.slide-content  {
    margin-bottom: 0; 
}


@media (max-width: 768px) {
    .slide-content  {
        margin-bottom: 55px; 
    }
}




::-webkit-scrollbar {
    width: 14px; 
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b60ad, #1465a2); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1465a2, #3b60ad); 
}

/* Firefox */
* {
    scrollbar-width: thick; 
    scrollbar-color: #3b60ad #f1f1f1; 
}



#hero-slider .slide {
    display: flex;
    align-items: center; 
    /* height: 100vh; */
}

.slide-content {
    text-align: left; 
}


.custom-button2 {
    padding: 14px 28px;
    background: linear-gradient(90deg, #1465a2, #3b60ad, #000000);
    background-size: 200% 100%; 
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-position: 0% 50%;
}

.custom-p{
    padding: 12px 24px !important;
}


.custom-button2:hover {
    background-position: 100% 50%; 
    transition: background-position 0.4s ease-in-out; 
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    /* transform: scale(1.05); */
}


.custom-button2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}


.slider-container {
    position: relative;
    width: 100%;
}

.slide {
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center; 
    height: 100vh;
    text-align: center; 
}

.slide-content {
    max-width: 80%; 
    color: white; 
}

.full-width-video, .slide img {
    width: 100%;
    height: 100vh; 
    object-fit: cover; 
}

/* Adjust text alignment for small screens */
@media (max-width: 768px) {
    .slide-content {
        max-width: 90%;
        text-align: center;
    }
}



.same-height{
    height: 500px !important;
}

@media (max-width: 768px) { 
    .same-height {
        height: 530px !important;
    }
}


@media (max-width: 768px) { 
    .slide-content h3{
        font-size: 35px;
    }
}

@media (max-width: 768px) { 
    .slide-content h1 {
        font-size: 25px;
    }
}




/* .hover-effect {
    transition: transform 0.3s, box-shadow 0.3s;
}
.hover-effect:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
} */

.border-radius-custom{
    border-radius: 50px 0px 50px 0px !important;
}



.border-radius-custom {
    border-radius: 50px 0px 50px 0px !important;
    overflow: hidden !important; 
}

.card-img-top2 {
    border-top-left-radius: 50px !important;
    border-top-right-radius: 0px !important;
}






.dropdown-hover .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100.3%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}


.dropdown-hover:hover > .dropdown-menu {
    display: block;
}


.dropdown-right {
    left: 100%;
    top: 0;
}


.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    color: black;
    transition: 0.3s;
    white-space: nowrap;
}


/* .dropdown-item:hover {
    background: #f8f9fa;
    color: black;
} */

.arrow-icon {
    font-size: 14px;
    color: black;
}


.pointer{
    cursor: pointer;
}




.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    /* opacity: 0.7; */
}
.gallery-card:hover img {
    transform: scale(1.1);
    opacity: 1; 
}


/* Submenu Styling */
.dropdown-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
    background-color: #222;
    border-radius: 6px;
}

.dropdown-submenu.active {
    max-height: 300px; /* Adjust as needed */
}

/* Arrow Animation */
.arrow-icon {
    transition: transform 0.3s ease-in-out;
}

.arrow-icon.rotate {
    transform: rotate(180deg);
}

/* Dropdown Item */
.dropdown-item {
    padding: 12px 16px;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}

.dropdown-item:hover {
    background: #3b60ad;
}




.mobile-navbar {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
}


.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #222;
    padding: 20px;
    transition: left 0.3s ease-in-out;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow-y: auto; 
}


.sidebar.active {
    left: 0;
}


.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}


.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}


.sidebar-menu {
    list-style: none;
    padding: 60px 20px;
}


.sidebar-link {
    display: block;
    color: white;
    font-size: 18px;
    padding: 12px 0;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
}


.sidebar-link:hover {
    color: #3b60ad;
}


.dropdown-icon {
    float: right;
    transition: transform 0.3s ease-in-out;
}


.sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px;
}


.sidebar-submenu.active {
    max-height: 500px; 
    overflow-y: auto; 
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}


.overlay.active {
    opacity: 1;
    visibility: visible;
}


.dropdown-icon.rotate {
    transform: rotate(180deg);
}



.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gallery-card:nth-child(3n) { 
    grid-row: span 2;
}



.whats-float {
	position: fixed;
	top: 90%;
	right: 10px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.whats-float i {
	font-size: 28px;
	color: white;
}


.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 20px;
    z-index: 20;
  }
  
  .owl-nav button {
    background: rgba(0, 0, 0, 0.6);
    color: white !important;
    border: none;
    border-radius: 50%;
    width: 80px !important;
    height: 80px !important;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background 0.3s ease;
  }
  
  .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.85);
    color: white;
  }
  

  @media (max-width: 768px) {
    .owl-nav {
      padding: 0;
    }
  
    .owl-nav button.owl-prev {
      position: absolute;
      left: -15px;
    }
  
    .owl-nav button.owl-next {
      position: absolute;
      right: -15px;
    }
  
    .owl-nav button {
      width: 45px;
      height: 45px;
      font-size: 20px;
    }
  }
  