.about-us-sec {
	background-color: #fff;
	background-image: url("../img/about-banner.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.company-ceo h4 {
	color: #ff4500;
	text-transform: capitalize;
	margin-bottom: 0;
}

.company-ceo span {
	color: #777;
}

.read-more-btn a {
	background: #ff9000;
	color: #fff;
	display: inline-block;
	padding: 12px 30px;
	text-transform: capitalize;
	position: relative;
	z-index: 5;
	transition: 0.5s;
	font-weight: 600;
	transition: all 0.4s ease 0s;
}

.about-desc {
	padding: 60px 0px 50px 50px;
	position: relative;
	z-index: 2;
	color: #ddd;
}

.about-desc::before {
	position: absolute;
	content: "";
	top: 0;
	height: 5000px;
	background: #29283f;
	left: -30px;
	width: 5000px;
	z-index: -1;
}

.about-desc h2 {
	color: #ffff;
	font-size:26px;
}

.about-desc p {
	color: #ffff;
	
}
.about-desc ul li{color: #fff;}
.about-desc li::before {
  content: "\f00c";
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  font-weight: 300;
  color: #fff;;
}



.home-v2 .slider::after {
	background-image: none;
}

.count-up-sec.style-2 .sec-title {
	text-align: center;
	color: #fff;
}

.count-up-sec.style-2 .sec-title h1 {
	color: #fff;
}

 .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .accordion-button {
            background-image: linear-gradient(to left, #5d4874 30%, #5c3587 100%);
            color: white;
            font-weight: bold;
        }
        .accordion-button:not(.collapsed) {
            background-color: #1557b0;
            color: white;
        }
        .accordion-body {
            background-color: white;
            padding: 20px;
            margin: 0 0 15px 0;
            color: #000000;
            line-height: 1.8;
        }


.about-desc.style-2::before,
.home-v3 .about-desc::before {
	background: #ff4500;
	left: inherit;
	right: -6px;
	opacity: 0.97;
}

.about-desc.style-2,
.home-v3 .about-desc {
	padding: 60px 50px 50px 0px;
	color: #fff;
}

.about-desc.style-2 .sec-title h1,
.about-desc.style-2 .company-ceo h4,
.about-desc.style-2 .company-ceo span,
.home-v3 .about-desc .sec-title h1,
.home-v3 .about-desc .company-ceo h4,
.home-v3 .about-desc .company-ceo span {
	color: #fff;
}

.home-v2 .faq-sec,
.home-v3 .faq-sec {
	margin-top: 100px;
}

.hero {
            background: linear-gradient(to right, #003087, #005EB8);
            color: #fff;
            text-align: center;
            padding: 4rem 2rem;
        }
        .hero h2 {
            color: #fff;
            margin-bottom: 1rem;
        }
        .hero p {
            color: #fff;
            margin-bottom: 2rem;
        }
        .cta-button {
            background: #FF6200;
            color: #fff;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }
        .features {
            padding: 3rem 2rem;
            text-align: center;
        }
        .features h2 {
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .feature-item {
            background: #fff;
            padding: 30px 10px;
			text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }	
        .feature-item i {
            font-size: 50px;
            margin-bottom: 1rem;
        }
        .feature-item h3 {
            margin-bottom: 0.5rem;
			font-size: 20px;
            color: #003087;
        }
		
		
		
		
.bggrays{ background-color: #f4f4f4; }
.clubsection{ margin-top: -80px; z-index: 5;  text-align: center;}
.clubsection .Kv1aVt {width: 300px; text-align: center;  margin:auto;  padding:20px;}
.clubsection img{padding: 5px; background-color: #fff; border: 1px solid #ccc; box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);} 



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

.gallery{
  display: flex;
  flex-wrap: wrap;
}
.gallery .image{
  padding: 7px;
  width: calc(100% / 4);
  cursor: pointer;
}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery .image:hover img{
  transform: scale(1.1);
}

.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  margin: 0 5px;
}
.details .title p.current-img{
  font-weight: 500;
}
.details .icon{
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}
.preview-box .image-box{
  display: flex;
  width: 100%;
  position: relative;
}
.image-box .slide{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}
.slide.prev{
  left: 0px;
}
.slide.next{
  right: 0px;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.45);
}

@media(max-width: 1000px){
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media(max-width: 600px){
  .gallery .image{
    width: 100%;
    padding: 4px;
  }
  .gallery{
  display: block;
  flex-wrap: wrap;
  }
}

.section-heading {
            color: #00ddeb;
            font-weight: bold;
        }
        .card {
            background: #1b263b;
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            padding: 20px;
        }
        .list-group-item {
            background: transparent;
            color: #fff;
            border: none;
            text-align: left;
            padding: 10px 0;
        }
        .list-group-item strong {
            color: #ff2e63;
        }
        .gradient-btn {
            background: linear-gradient(45deg, #ff2e63, #00ddeb);
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            color: white;
            transition: all 0.3s ease;
        }
        .gradient-btn:hover {
            background: linear-gradient(45deg, #00ddeb, #ff2e63);
            transform: scale(1.05);
        }