* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f6faff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a { text-decoration: none; }

/* Header */
.header {
  background: #001f36;
  color: #fff;
  padding: 15px 0;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  color: #fff;
}
/* .btn {
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
}
.btn-outline {
  border: 2px solid #007bff;
  padding: 10px 18px;
  color: #007bff;
  margin-left: 10px;
  border-radius: 5px;
} */

/* Hero */
.hero {
  background: url("/Backend/images/training/ai-bg.webp") no-repeat center center/cover;
  padding: 60px 0;
}

.badge-style{
        background-color: gold;
    color: #02162d;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 30px 30px 30px 0;
    display: inline-block;
    /* margin-bottom: 20px; */
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 30px;
}
.hero-text { flex: 1; }
.hero-img { 
    background: rgb(36 57 89 / 30%);
    border-radius: 15%;
}
.hero-img img { 
    width: auto; 
    transform: translateY(11%);
    transform: scaleX(-1);
}
.hero-shape {
  position: absolute;
  left: 0px;
  top: 0px;
}
.hero-shape img { width: 250px; }
.hero-shape2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.hero-shape2 img { width: 350px; }
.contact-btn{
        font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 15px 30px 15px 30px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: #fff !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right, #02162d 0%, #36e0f7 100%);
}

/* About */
.bg-why-ai{
    background-image: linear-gradient(to top, #fdfdff 0%, #fcb664 100%);
}
.about {
  gap: 30px;
  padding: 100px 0;
  align-items: center;
}
.about h3 {
  font-size: 40px !important;
  margin-bottom: 20px;
}
.about-img {
  position: absolute;
    left: -30px;
    top: -50px;
}
.about-img img{
width: 70%;  
}
.about-img2 {
      position: absolute;
    right: 40px;
    bottom: -80px;
}
.about-img2 img{
width: 60%;  
}

/* Services */
.services {
  background: #f1f9ff;
  padding: 60px 0;
  text-align: center;
}
.services h4 {
  font-size: 22px !important;
  margin-bottom: 10px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.service-shape{
        position: absolute;
    left: 0;
    top: 30px;
    bottom: 0px;
}
.service-shape img{
        width: 50%;
        align-self: center;
}
.card{
        border-bottom: 2px solid #249cb3;
        border-radius: 15px;
        color: #000;
}
.card h4{
        color: #249cb3;
}
/* benefit */
.benefit-img img{
    width: 80%;
    /* border-radius: 15px; */
}
.bg-azure{
    background-color: azure;
}
/* for whom */
.card-title{
    color: #249cb3;
}
.for-whom{
    background-image: linear-gradient(to top, #294a9c 0%, #fdfaf9 100%);
}
/* Why Choose Us */
.why-choose-us{
    background: url("/Backend/images/training/ai-bg.webp") no-repeat center center/cover;
  padding: 60px 0;
}
.py-10{
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Testimonials */
.testimonials {
  background: #001f36;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
blockquote {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}
cite { display: block; margin-top: 10px; }

/* FAQ + Contact */
.faq-contact {
  gap: 30px;
  padding: 60px 0;
}
.accordion-button {
  background-image: linear-gradient(to right, #02162d 0%, #36e0f7 100%);
    color: white;
    border-radius: 5px;
}

/* Footer */
.footer {
  background: #001f36;
  color: #fff;
  padding: 40px 0;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-bottom: 20px;
}
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Responsive css start */
@media (max-width: 768px) {
  .hero {
   padding: 30px 15px;
}
.hero-content {
    padding: 15px;
}
.hero h1{
    font-size: 30px !important;
    margin-bottom: 10px;
    text-align: center !important;
}
.hero-content p{
    margin-bottom: 10px;
    text-align: center !important;
}
.hero-text .p-3{
    padding: 0px !important;
}
.hero-text .fs-5{
    font-size: 14px !important;}
.badge-style {
    font-size: 12px;
    text-align: center !important;  
}

.contact-btn {
    width: 100%;
}
.hero .hero-img {
    display: none;
}
/* why-ai */
.bg-why-ai{
    padding: 30px 0px !important;  
}
.bg-why-ai .row{
    flex-direction: column-reverse !important;
    text-align: center !important;
}
.bg-why-ai ul{
    margin-bottom: 10px !important;
}
.bg-why-ai .fs-6{
    font-size: 14px !important;
}
.why-ai-img{
    margin-top: 30px !important;
}
.bg-why-ai .flex-wrap{
    justify-content: center !important;
    margin-bottom: 0px !important;
}
/* For whom */
.for-whom {
    padding: 0px 0px 30px !important;
    text-align: center !important;
}
.for-whom .fs-1{
    font-size: 28px !important;
    margin-bottom: 15px !important;
}
.for-whom .fs-5{
    font-size: 16px !important;
    margin-bottom: 15px !important;
}
.for-whom .card {
    margin-bottom: 15px !important;
}
.for-whom .card .card-title {
    font-size: 18px !important;
    margin-bottom: 0px !important;
}

/* Why-choose-us */
.why-choose-us{
    padding: 30px 0px !important; 
    text-align: center !important; 
}
.why-choose-us .for-mobile-img{
    display: none;
}
.why-choose-us .flex-wrap{
    justify-content: center !important;
}
/* Benefits */
.benefit-img img {
    width: 100%;
}
.why-ai-mobile-btn-style{
    margin-bottom: 15px !important;
}
/* Faq style */
.faq-contact{
    padding: 30px 0px !important;
    text-align: center !important;
}
.faq-contact h2{
    margin-bottom: 15px !important;
}

}