/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}
body{color:#222;}

/* NAVBAR */
.nav{
position:fixed;
top:0;
width:100%;
background:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
z-index:999;
}
.nav .logo{color:#0F172A;font-weight:bold;font-size:18px;}
.nav .menu a{margin-left:15px;font-weight:bold;text-decoration:none;color:#333;font-size:14px;}

}

/*hero*/

{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

.hero{
  height:70vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(135deg,#fff,#fff);
  color:#f26522;
  padding:20px;
}

.hero-content{
  max-width:800px;
}

.typing-text{
  font-size:40px;
  font-weight:800;
  line-height:1.2;
}

.cursor{
  display:inline-block;
  color:#000;
  animation:blink 0.7s infinite;
}

@keyframes blink{
  50%{opacity:0;}
}

.hero p{
  margin-top:20px;
  font-size:18px;
  color:#999;
}


/* TRUST LOGOS */
.brands{
background:#0F172A;
color:#fff;
text-align:center;
padding:40px 20px;
}

.brands h2{margin-bottom:20px;font-size:18px; font-family:century gothic;;}

.logos{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.logos img{
width:80px;
filter:grayscale(100%);
opacity:0.8;
}
.logo{
font-weight:600;
color:#0F172A;
font-size:15px;
letter-spacing:0.5px;
}
@media(max-width:600px){
.logo{
font-size:14px;
}
}

/* SERVICES (blue BLOCKS) */
.services{
background:#0F172A;
color:#fff;
padding:40px 20px;
}

.service{
border-bottom:1px solid rgba(255,255,255,0.3);
padding:20px 0;
text-align:left;
}
.service h2{font-size: 36px; font-weight:normal;}
.service h2 span{color:#f26522;}
.service h3{font-size:19px; color:#f26522;}
.service p{font-size:15px;margin-top:5px;}

/*SECTION */

/* SECTION */
.content2 {
  padding: 20px 10%;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.left {
  flex: 1;
}

.left h2 {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  line-height: 1.1;
}

.left h2 span {
  color: #f26522;
}

.left p {
  font-size: 19px;
  color: #555;
  margin: 15px 0;
  line-height: 1.3;
}

.highlight {
  font-weight: 500;
}

.highlight span {
  color: #f26522;
}

.arrow {
  margin-left: 10px;
  font-size: 20px;
}

/* RIGHT SIDE */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}

.logo .box {
  border: 2px solid #f26522;
  padding: 5px 8px;
  color: #f26522;
  font-weight: bold;
}

.card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.card h4 {
  margin: 20px 0;
  font-size: 18px;
  color: #222;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #f26522;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #1f4fbf;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .left h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
  }
}
/* CONTENT SECTION */
.content{
background: #f1f5f9; 
padding:20px 20px;
}

.content h2{text-align:center;margin-bottom:15px;}
.content p{text-align:center;color:#666;font-size:14px;margin-bottom:20px;}


/* ABOUT SECTION */
.about {
  background: #f1f5f9;
  padding: 5px 5%;
  color: #000;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
}

/* TEXT */
.about-text {
  flex: 2;
  text-align: left; /* desktop pe left */
}

.about-text h2 {
  font-size: 32px;
  margin: 0px;
  padding:0;
  line-height: 1.2;
}

.about-text h3 {
  font-weight: normal;
  font-size:19px;
}

.about-text h3 span {
font-weight:bold;
color:#f26523;
}
.about-text p {
  font-size: 19px;
  color: #555;
  max-width: 900px;
  line-height:1.3;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}
/* Footer */
.custom-footer {
  background: #111;
  color: #fff;
  padding: 25px 20px;
  font-family: Arial, sans-serif;
}

/* Top */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Text */
.footer-left h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.footer-left p {
  font-size: 14px;
  color: #bbb;
}

/* Right Icons */
.footer-right {
  display: flex;
  gap: 15px;
}

.footer-right img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer-right img:hover {
  transform: scale(1.1);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
 /* FAQ SECTION */
.faq {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* FAQ ITEM */
.faq-item {
  max-width: 700px;
  margin: 0 auto 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-answer p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-item.active span {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }
}


/* Reset (important for proper working) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section */
.wm-section {
  padding: 60px 20px;
  background: #f9fafc;
  font-family: Arial, sans-serif;
}

/* Wrapper */
.wm-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* Left */
.wm-left {
  flex: 1 1 400px;
}

.wm-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.wm-left h2 span {
  font-weight:normal;
  color:#f26522;
}

.wm-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Right Grid */
.wm-right {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.wm-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.wm-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.wm-card p {
  font-size: 14px;
  color: #666;
}

/* Hover */
.wm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .wm-wrapper {
    flex-direction: column;
  }

  .wm-right {
    grid-template-columns: 1fr;
  }
}}
