/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f5f6f8;
}

/* NAVBAR FIX */
.navbar{
  position:fixed;   /* FIXED NAV */
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  z-index:1000;  /* IMPORTANT */
  background:rgba(184, 0, 0, 0.4); /* visible */
  backdrop-filter:blur(10px);
}

.navbar .logo{
  color:#fff;
  font-size:22px;
  font-weight:bold;
}

.navbar nav{
  display:flex;
  gap:25px;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

.btn-outline{
  border:1px solid #fff;
  background:none;
  color:#fff;
  padding:10px 15px;
  border-radius:6px;
  cursor:pointer;
}

/* HERO FIX */
.hero{
  height:100vh;
  background-image:url('../DbrosImages/DBrosMedia.jpg');
  background-size: cover;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:280px;
  padding:120px 80px 60px; /* TOP SPACE FOR NAV */
  color:#fff;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content{
  position:relative;
  z-index:2;
  max-width:550px;
}

.hero-content h1{
  font-size:60px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-content p{
  margin-bottom:20px;
  color:#ddd;
}

.hero-info{
  display:flex;
  gap:20px;
  margin-top:20px;
}

/* FORM FIX */
.form-box{
  position:relative;
  z-index:2;
  background:#fff;
  color:#000;
  padding:30px;
  border-radius:12px;
  width:340px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.form-box h3{
  margin-bottom:15px;
}

.form-box input,
.form-box select{
  width:100%;
  margin:10px 0;
  padding:12px;
  border:1px solid #ddd;
  border-radius:6px;
}

.form-box button{
  width:100%;
  background:#2f4bff;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

/* SERVICES ALIGN FIX */
.services{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  padding:100px 80px;
  max-width:1200px;
  margin:auto;
}

.left-images{
  flex:1;
}

.small-img{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.left-images img{
  width:100%;
  border-radius:12px;
}

/* RIGHT CONTENT */
.services .content{
  flex:1;
}

.services h2{
  font-size:40px;
  margin-bottom:15px;
}

.features{
  display:flex;
  gap:30px;
  margin-top:20px;
}

/* CARDS */
.cards{
  padding:100px 80px;
  max-width:1200px;
  margin:auto;
}

.card-grid{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.card{
  position:relative;
  flex:1;
}

.card img{
  width:100%;
  border-radius:12px;
}

.card span{
  position:absolute;
  bottom:15px;
  left:15px;
  background:rgba(0,0,0,0.7);
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
}

/* ABOUT FIX */
.about{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  padding:100px 80px;
  background:#2f4bff;
  color:#fff;
}

.about-img{
  position:relative;
}

.about img{
  width:400px;
  border-radius:12px;
}

.stats{
  position:absolute;
  bottom:20px;
  left:20px;
  display:flex;
  gap:15px;
}

.stats div{
  background:rgba(0,0,0,0.6);
  padding:15px;
  border-radius:10px;
}

/* PROCESS */
.process{
  padding:100px 80px;
  text-align:center;
}

.process-grid{
  display:flex;
  justify-content:center;
  gap:50px;
  margin-top:30px;
}

/* TESTIMONIAL */
.testimonials{
  padding:100px 80px;
  max-width:1200px;
  margin:auto;
}

.testimonial-grid{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.t-card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  flex:1;
}

/* BLOG */
.blog{
  padding:100px 80px;
  max-width:1200px;
  margin:auto;
}

.blog-grid{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.blog-card img{
  width:100%;
  border-radius:10px;
}

/* CTA */
.cta{
  background:#2f4bff;
  color:#fff;
  padding:60px;
  text-align:center;
}

/* FOOTER */
footer{
  padding:40px;
  text-align:center;
}





.form-box{
  width:380px;
  background:#ffffff;
  padding:32px;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* TITLE */
.form-box h3{
  text-align:center;
  font-size:22px;
  font-weight:600;
  margin-bottom:25px;
  color:#111;
}

/* INPUT FIELDS */
.form-box input,
.form-box select{
  width:100%;
  height:52px;
  padding:0 16px;
  margin-bottom:16px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  background:#f3f4f6;   /* LIGHT GREY LIKE IMAGE */
  font-size:14px;
  outline:none;
  transition:0.2s;
}

/* INPUT FOCUS EFFECT */
.form-box input:focus,
.form-box select:focus{
  border-color:#2f4bff;
  background:#fff;
}

/* SELECT ARROW FIX */
.form-box select{
  appearance:none;
  background:#f3f4f6 url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
}

/* BUTTON */
.form-box button{
  width:100%;
  height:52px;
  margin-top:10px;
  border:none;
  border-radius:12px;
  background:#2f4bff;
  color:#fff;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

/* BUTTON HOVER */
.form-box button:hover{
  background:#1f3ae0;
}



.logo{
    width: 80px;
    height: 60px;
}



























.hero-content{
  max-width:550px;
  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:72px;
  font-weight:700;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  color:#ddd;
  margin-bottom:25px;
  line-height:1.6;
}

/* INFO */
.hero-info{
  display:flex;
  gap:25px;
  margin-bottom:25px;
  font-size:16px;
}

/* BUTTONS FIX */
.hero-buttons{
  display:flex;
  gap:15px;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:#2f4bff;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.btn-primary:hover{
  background:#1f3ae0;
}

/* SECONDARY BUTTON */
.btn-secondary{
  border:1px solid #fff;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s;
}

.btn-secondary:hover{
  background:#fff;
  color:#000;
}




.info-box{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.1);
  padding:10px 14px;
  border-radius:10px;
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:14px;
}

/* ICON IMAGE */
.info-icon{
  width:18px;
  height:18px;
  filter:invert(1);  /* makes icon white */
}











/* MAIN SECTION */
.services-section{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  padding:80px 60px;
  max-width:1200px;
  margin:auto;
}

/* LEFT SIDE IMAGES */
.services-images{
  flex:1;
}

.img-large{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:20px;
}

/* TWO SMALL IMAGES */
.img-row{
  display:flex;
  gap:20px;
}

.img-row img{
  width:50%;
  height:180px;
  object-fit:cover;
  border-radius:20px;
}

/* RIGHT SIDE CONTENT */
.services-content{
  flex:1;
}

/* HEADING */
.services-content h2{
  font-size:48px;
  font-weight:700;
  margin-bottom:20px;
  line-height:1.2;
}

/* PARAGRAPH */
.services-content p{
  font-size:16px;
  color:#666;
  line-height:1.7;
  margin-bottom:30px;
  max-width:500px;
}

/* FEATURES CONTAINER */
.services-features{
  display:flex;
  gap:40px;
}

/* FEATURE BOX */
.feature-box{
  display:flex;
  align-items:center;
  gap:15px;
}

/* IMAGE STYLE (BLUE BOX LIKE UI) */
.feature-img{
  width:60px;
  height:60px;
  background:#2f4bff;
  padding:12px;
  border-radius:14px;
  object-fit:contain;
  filter:invert(1);
  box-shadow:0 10px 20px rgba(47,75,255,0.3);
}

/* FEATURE TEXT */
.feature-box h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:4px;
}

.feature-box p{
  font-size:14px;
  color:#777;
}

/* HOVER EFFECT (OPTIONAL BUT NICE) */
.feature-box:hover .feature-img{
  transform:translateY(-3px);
  transition:0.3s;
}

/* IMAGE HOVER */
.img-large:hover,
.img-row img:hover{
  transform:scale(1.03);
  transition:0.3s;
}

/* RESPONSIVE (IMPORTANT) */
@media(max-width:900px){
  .services-section{
    flex-direction:column;
    padding:60px 20px;
  }

  .services-features{
    flex-direction:column;
    gap:20px;
  }

  .services-content h2{
    font-size:32px;
  }
}






.faq{
  padding:100px 60px;
  background:#f5f6f8;
}

.faq h2{
  text-align:center;
  font-size:42px;
  font-weight:700;
  margin-bottom:60px;
}

/* CONTAINER */
.faq-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  max-width:1200px;
  margin:auto;
}

/* LEFT */
.faq-left{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* FAQ ITEM */
.faq-item{
  background:#fff;
  padding:20px 25px;
  border-radius:12px;
  cursor:pointer;
  transition:0.3s;
  border:1px solid #eee;
}

/* ACTIVE ITEM */
.faq-item.active{
  background:#f0f3ff;
  border-color:#2f4bff;
}

/* QUESTION */
.faq-item h4{
  font-size:18px;
  font-weight:600;
}

/* ANSWER */
.faq-item p{
  font-size:14px;
  color:#666;
  margin-top:10px;
  line-height:1.6;
}

/* HOVER */
.faq-item:hover{
  transform:translateY(-3px);
}

/* RIGHT IMAGE */
.faq-container img{
  flex:1;
  width:100%;
  border-radius:20px;
  object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:900px){
  .faq-container{
    flex-direction:column;
  }

  .faq h2{
    font-size:30px;
  }
}




















.faq{
  padding:100px 80px;
  background:#f3f4f6;
}

.faq h2{
  text-align:center;
  font-size:48px;
  margin-bottom:60px;
}

.faq-container{
  display:flex;
  gap:50px;
  align-items:flex-start;
  max-width:1200px;
  margin:auto;
}

.faq-left{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:#e5e7eb;
  padding:20px 25px;
  border-radius:14px;
  cursor:pointer;
}

.faq-item.active{
  border:2px solid #2f4bff;
}

.faq-question{
  display:flex;
  justify-content:space-between;
}

.faq-item p{
  display:none;
  margin-top:10px;
  color:#555;
}

.faq-item.active p{
  display:block;
}

.faq-image{
  flex:1;
}

.faq-image img{
  width:100%;
  border-radius:16px;
}




















.services-new{
  padding:120px 80px;
  background:#f5f6f8;
}

/* WRAPPER */
.services-wrapper{
  max-width:1200px;
  margin:auto;
}

/* TEXT */
.services-text{
  margin-bottom:60px;
}

.services-text h2{
  font-size:60px;
  font-weight:700;
  line-height:1.2;
}

/* CARDS ROW */
.services-cards{
  display:flex;
  justify-content:center;
  gap:30px;
}

/* CARD */
.service-card{
  width:300px;
  height:420px;
  border-radius:25px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
}

/* IMAGE */
.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

/* OVERLAY */
.service-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.service-overlay h4{
  color:#fff;
  font-size:18px;
  font-weight:600;
}

/* HOVER */
.service-card:hover img{
  transform:scale(1.08);
}



.services-text{
  text-align:center;   /* center align */
  margin-bottom:60px;
}

.services-text h2{
  font-size:48px;      /* reduce size */
  font-weight:700;
  line-height:1.2;
  max-width:700px;     /* control width */
  margin:auto;         /* center */
}












.about-dbros{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  padding:100px 80px;
  background:#2f4bff;   /* ✅ SAME BLUE */
  color:#fff;
  flex-wrap:wrap;

  /* dotted pattern like image */
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* IMAGE */
.about-img{
  position:relative;
  flex:1;
  max-width:500px;
}

.about-img img{
  width:100%;
  border-radius:20px;
}

/* STATS */
.about-stats{
  position:absolute;
  bottom:20px;
  left:20px;
  display:flex;
  gap:15px;
}

.stat-box{
  background:rgba(0,0,0,0.4);
  backdrop-filter:blur(10px);
  padding:15px 20px;
  border-radius:12px;
  text-align:center;
}

.stat-box h3{
  font-size:24px;
}

.stat-box p{
  font-size:13px;
  color:#eee;
}

/* CONTENT */
.about-content{
  flex:1;
  max-width:520px;
}

.about-content h2{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.about-content p{
  color:#e0e7ff;
  margin-bottom:15px;
  line-height:1.6;
}

/* BUTTON */
.about-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 24px;
  border-radius:8px;
  border:1px solid #fff;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.about-btn:hover{
  background:#fff;
  color:#2f4bff;
}








.process-dbros{
  padding:100px 80px;
  background:#f8fafc;
  text-align:center;
}

/* HEADER */
.process-header h2{
  font-size:42px;
  margin-bottom:10px;
}

.process-header p{
  color:#666;
  max-width:600px;
  margin:0 auto 50px;
  line-height:1.6;
}

/* GRID */
.process-grid{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* CARD */
.process-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  max-width:300px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.process-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.process-card h3{
  font-size:20px;
  margin:15px 0 10px;
}

.process-card p{
  padding:0 15px 20px;
  color:#555;
  font-size:14px;
}

/* HOVER */
.process-card:hover{
  transform:translateY(-8px);
}











.testimonial-exact{
  padding:100px 80px;
  background:#f1f5f9;   /* LIGHT GREY LIKE IMAGE */
}

/* HEADER */
.testimonial-header h2{
  font-size:48px;
  margin-bottom:60px;
}

/* ROW */
.testimonial-row{
  display:flex;
  gap:25px;
}

/* CARD */
.t-card{
  background:#fff;
  padding:30px;
  border-radius:14px;
  flex:1;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* STARS */
.stars{
  color:#fbbf24;  /* GOLD */
  font-size:18px;
  margin-bottom:20px;
}

/* TEXT */
.t-card p{
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
  font-size:15px;
}

/* CLIENT */
.client{
  display:flex;
  align-items:center;
  gap:12px;
}

.client img{
  width:50px;
  height:50px;
  border-radius:50%;
}

.client h4{
  font-size:16px;
  margin-bottom:2px;
}

.client span{
  font-size:12px;
  color:#888;
  letter-spacing:1px;
}

















.blog-exact{
  padding:100px 60px;
  background:#f1f5f9;
}

/* HEADER */
.blog-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:60px;
}

.blog-header h2{
  font-size:56px;        /* bigger like design */
  font-weight:600;
  line-height:1.1;
  max-width:600px;
}

.blog-btn{
  background:#2f4bff;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  font-size:15px;
  text-decoration:none;
  transition:0.3s;
}

.blog-btn:hover{
  background:#1f3ae0;
}

/* GRID */
.blog-grid{
  display:flex;
  gap:30px;
  max-width:1200px;
  margin:auto;
}

/* LEFT BIG CARD */
.blog-left{
  flex:1.6;
  background:#e2e8f0;   /* grey like image */
  border-radius:16px;
  overflow:hidden;
}

.blog-left img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.blog-content{
  padding:25px;
}

.blog-content span{
  font-size:12px;
  color:#6b7280;
  letter-spacing:1px;
}

.blog-content h3{
  font-size:22px;
  margin:10px 0 12px;
}

.blog-content a{
  color:#2f4bff;
  font-size:14px;
  text-decoration:none;
}

/* RIGHT SIDE */
.blog-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* SMALL CARDS */
.blog-card{
  display:flex;
  gap:15px;
  background:#e2e8f0;
  padding:18px;
  border-radius:16px;
  align-items:center;
}

.blog-card img{
  width:130px;
  height:100px;
  object-fit:cover;
  border-radius:12px;
}

.blog-card span{
  font-size:12px;
  color:#6b7280;
}

.blog-card h4{
  font-size:17px;
  margin:6px 0;
}

.blog-card a{
  color:#2f4bff;
  font-size:14px;
  text-decoration:none;
}































/* SECTION */
.blog-section{
  max-width:1200px;
  margin:auto;
  padding:100px 20px;
}

/* HEADER */
.blog-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:50px;
}

.blog-header h2{
  font-size:60px;
  line-height:1.1;
  font-weight:700;
}

.blog-btn{
  background:#2f4bff;
  color:#fff;
  padding:12px 22px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-size:14px;
}

/* GRID */
.blog-container{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

/* LEFT BIG CARD */
.blog-left{
  background:#eef1f6;
  border-radius:20px;
  overflow:hidden;
}

.blog-left img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.blog-left-content{
  padding:25px;
}

.blog-left-content span{
  font-size:12px;
  color:#6b7280;
}

.blog-left-content h3{
  font-size:22px;
  margin:10px 0;
}

.blog-left-content .read-btn{
  margin-top:10px;
}

/* RIGHT SIDE */
.blog-right{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* SMALL CARDS */
.blog-card{
  display:flex;
  align-items:center;
  gap:15px;
  background:#eef1f6;
  padding:15px;
  border-radius:16px;
}

.blog-card img{
  width:130px;
  height:95px;
  object-fit:cover;
  border-radius:12px;
}

.card-content span{
  font-size:12px;
  color:#6b7280;
}

.card-content h4{
  font-size:16px;
  margin:6px 0;
}

/* READ BUTTON */
.read-btn{
  display:inline-block;
  font-size:13px;
  color:#2f4bff;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.read-btn::after{
  content:" →";
}

.read-btn:hover{
  color:#1f3ae0;
  letter-spacing:0.5px;
}

















/* CTA SECTION */
.cta-section{
  background:#ffffff;   /* SAME COLOR */
  padding:80px 20px;
}

/* CONTAINER */
.cta-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* TEXT */
.cta-container h2{
  color:#000000;
  font-size:48px;
  font-weight:600;
}

/* BUTTON */
.cta-btn{
  border:1px solid rgba(3, 3, 3, 0.6);
  color:#ffffff;
  padding:14px 28px;
  background-color: #1f3ae0;
  border-radius:10px;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

/* HOVER */
.cta-btn:hover{
  background:#fff;
  color:#2f4bff;
}















/* FONT */
body{
  font-family: 'Poppins', sans-serif;
}

/* FOOTER */
.footer{
  background:#eef2f7;
  padding:80px 20px;
}

/* MAIN LAYOUT */
.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
}

/* BRAND SECTION */
.footer-brand{
  max-width:350px;
}

/* LOGO */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand img{
  width:32px;
  height:32px;
}

.brand h2{
  font-size:22px;
  font-weight:600;
}

/* TEXT */
.footer-brand p{
  margin-top:15px;
  color:#6b7280;
  line-height:1.7;
  font-size:15px;
}

/* SOCIAL ICONS */
.socials{
  margin-top:20px;
  display:flex;
  gap:15px;
}

.socials img{
  width:22px;
  cursor:pointer;
  transition:0.3s;
}

.socials img:hover{
  transform:scale(1.2);
}

/* LINKS SECTION */
.footer-links{
  display:flex;
  gap:70px;
}

/* COLUMN */
.col h4{
  font-size:16px;
  margin-bottom:15px;
  font-weight:600;
}

.col a{
  display:block;
  margin-bottom:10px;
  color:#6b7280;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.col a:hover{
  color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .footer-links{
    flex-direction:column;
    gap:30px;
  }

  .brand{
    justify-content:center;
  }

  .socials{
    justify-content:center;
  }
}





.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* PERFECT CIRCLE */
.logo-box{
  width:60px;
  height:60px;                /* ✅ equal width & height */
  background:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* LOGO IMAGE */
.logo-box img{
  width:35px;                 /* adjust based on your logo */
  height:auto;
  object-fit:contain;
}
































/*responive*/





































/* ================= RESPONSIVE FIX ================= */

/* TABLET */
@media(max-width:1024px){

  /* HERO */
  .hero{
    flex-direction:column;
    gap:40px !important;
    text-align:center;
    padding:140px 40px 60px;
    height:auto;
  }

  .hero-content{
    max-width:100%;
  }

  .form-box{
    width:100%;
    max-width:400px;
  }

  /* SERVICES */
  .services-section{
    flex-direction:column;
    text-align:center;
    padding:60px 30px;
  }

  .services-features{
    justify-content:center;
  }

  /* FAQ */
  .faq-container{
    flex-direction:column;
    gap:40px;
  }

  /* ABOUT */
  .about-dbros{
    flex-direction:column;
    text-align:center;
  }

  /* PROCESS */
  .process-grid{
    flex-wrap:wrap;
    justify-content:center;
  }

  /* TESTIMONIAL */
  .testimonial-row{
    flex-wrap:wrap;
  }

  /* BLOG */
  .blog-container{
    grid-template-columns:1fr;
  }

  /* CTA */
  .cta-container{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  /* FOOTER */
  .footer-container{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .footer-links{
    flex-direction:column;
    gap:30px;
  }
}


/* MOBILE */
@media(max-width:600px){

  /* NAVBAR */
  .navbar{
    padding:15px 20px;
  }

  .navbar nav{
    display:none; /* simple mobile fix */
  }

  .logo{
    width:60px;
    height:auto;
  }

  /* HERO */
  .hero{
    padding:120px 20px 40px;
    gap:30px !important;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:14px;
  }

  .hero-info{
    flex-direction:column;
    gap:10px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  /* FORM */
  .form-box{
    width:100%;
  }

  /* SERVICES */
  .services-content h2{
    font-size:28px;
  }

  /* CARDS */
  .services-cards{
    flex-direction:column;
    align-items:center;
  }

  .service-card{
    width:90%;
  }

  /* ABOUT */
  .about-content h2{
    font-size:28px;
  }

  /* PROCESS */
  .process-card{
    max-width:100%;
  }

  /* TESTIMONIAL */
  .testimonial-row{
    flex-direction:column;
  }

  /* BLOG */
  .blog-header{
    flex-direction:column;
    gap:15px;
  }

  .blog-header h2{
    font-size:32px;
  }

  /* CTA */
  .cta-container h2{
    font-size:28px;
  }

  /* FOOTER */
  .footer{
    padding:60px 20px;
  }

  .brand{
    justify-content:center;
  }

  .socials{
    justify-content:center;
  }
}































/* ================= TABLET FIX (IMPORTANT) ================= */
@media(max-width:1024px){

  .footer-container{
    flex-direction:row; /* NOT column */
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
  }

  .footer-brand{
    max-width:300px;
    text-align:left;
  }

  .footer-links{
    flex-direction:row;
    gap:60px;
  }

  .col{
    text-align:left;
  }

  .brand{
    justify-content:flex-start;
  }

  .socials{
    justify-content:flex-start;
  }
}










/* ================= MOBILE FOOTER PERFECT FIX ================= */
@media(max-width:600px){

  .footer{
    padding:50px 20px;
  }

  .footer-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:35px;
  }

  /* BRAND SECTION */
  .footer-brand{
    max-width:280px;
  }

  .footer-brand h3{
    font-size:20px;
    margin-top:10px;
  }

  .footer-brand p{
    font-size:14px;
    line-height:1.6;
    margin-top:10px;
  }

  /* LOGO CENTER */
  .brand{
    justify-content:center;
  }

  /* SOCIAL ICONS */
  .socials{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:15px;
  }

  .socials img{
    width:22px;
  }

  /* LINKS SECTION */
  .footer-links{
    display:flex;
    flex-direction:column;
    gap:25px;
    width:100%;
  }

  .col{
    text-align:center;
  }

  .col h4{
    font-size:16px;
    margin-bottom:10px;
  }

  .col a{
    display:block;
    font-size:14px;
    margin:5px 0;
  }
}












/* ================= SERVICE DROPDOWN ================= */

.service-select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #ddd;
  background:#f3f4f6;
  font-size:14px;
  color:#333;
  outline:none;
  cursor:pointer;

  /* remove default style */
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  /* custom arrow */
  background-image:url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat:no-repeat;
  background-position:right 15px center;
}

/* HOVER */
.service-select:hover{
  border-color:#4f46e5;
}

/* FOCUS */
.service-select:focus{
  border-color:#4f46e5;
  box-shadow:0 0 0 2px rgba(79,70,229,0.2);
  background:#fff;
}

/* OPTION STYLE */
.service-select option{
  background:#fff;
  color:#333;
}


















/* ================= NAVBAR ================= */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 50px;
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  background:#0207f6;
  backdrop-filter:blur(10px);
}

/* LOGO */
.logo img{
  width:60px;
}

/* MENU */
nav{
  display:flex;
  gap:30px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

nav a:hover{
  color:#ffffff;
}

/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#fff;
  border-radius:2px;
  transition:0.3s;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .hamburger{
    display:flex;
  }

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#111;

    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;

    display:none;
  }

  nav.active{
    display:flex;
  }
}


















.footer {
  background: #0207f6;
  color: #ddd;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 8%;
  gap: 40px;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 250px;
}

/* LOGO */
.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

/* ABOUT TEXT */
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin: 8px 0;
  color: #ffffff;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #f4c430;
  margin-top: 8px;
}

/* SERVICES */
.footer-service {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-service img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}

.footer-service h4 {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.footer-service span {
  font-size: 12px;
  color: #ffffff;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f4c430;
  padding-left: 5px;
}

/* NEWSLETTER */
.footer-input {
  width: 100%;
  padding: 12px;
  border: none;
  margin-top: 10px;
  background: #e5e5e5;
  outline: none;
}

.footer-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  background: #f4c430;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #d4a800;
}

/* BOTTOM */
.footer-bottom {
  background: #000000;
  padding: 20px 8%;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #ffffff;
}

/* MENU BOX */
.footer-menu-box {
  background: linear-gradient(to right, #111, #333);
  padding: 15px 25px;
  border-radius: 6px;
}

.footer-bottom-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: #f4c430;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-menu-box {
    width: 100%;
  }
}






.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 60px 8%;
  align-items: start;
}


.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #f4c430;
}


.footer-col p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer-input {
  width: 100%;
  margin-top: 15px;
}

.footer-btn {
  width: 100%;
}


.footer-service {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-about {
  text-align: center;
}

.footer-logo {
  display: block;
  margin: 0 auto 20px;
}


/* HEADING */
.footer-col h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* LINE UNDER HEADING */
.footer-col h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #aaa;
  margin-top: 10px;
}

/* LIST STYLE */
.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

/* EACH ITEM */
.footer-links li {
  margin-bottom: 15px;
}

/* LINKS */
.footer-links a {
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.footer-links a:hover {
  color: #f4c430;
  padding-left: 6px;
}

.footer-links li {
  display: block;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 8%;
}


.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.footer-links li {
  display: block;   /* IMPORTANT */
  margin-bottom: 12px;
}

.footer-links a {
  display: block;   /* IMPORTANT */
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
}


.footer-links {
  display: block !important;
}

.footer-links li {
  display: block !important;
  width: 100%;
  margin-bottom: 12px;
}

.footer-links a {
  display: block !important;
  width: 100%;
}


@media (max-width: 992px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-about {
    text-align: left;
  }

}

@media (max-width: 600px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  /* CENTER LOGO */
  .footer-logo {
    margin: 0 auto 20px;
  }

  /* QUICK LINKS CENTER */
  .footer-links {
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  /* NEWSLETTER */
  .footer-input,
  .footer-btn {
    width: 100%;
  }

  /* SERVICES CENTER */
  .footer-service {
    justify-content: center;
    text-align: left;
  }

  /* BOTTOM SECTION */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-menu-box {
    width: 100%;
  }

}


.footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-bottom {
  margin-bottom: 0;
}








#text{
  color: #ffffff;
}













.footer {
  background: #0207f6; /* optional: dark background */
  color: #ffffff;
}

/* All text inside footer */
.footer,
.footer p,
.footer h3,
.footer h4,
.footer span,
.footer a {
  color: #ffffff;
}

/* Links hover (optional) */
.footer a:hover {
  color: #cccccc;
}

/* Input & button styling */
.footer-input {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}

.footer-input::placeholder {
  color: #cccccc;
}

.footer-btn {
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
}














/* ===== FINAL FOOTER BOTTOM (BLACK BAR) ===== */
.footer-bottom {
  background: #000000;
  padding: 20px 8%;
}

/* INNER LAYOUT */
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* COPYRIGHT TEXT */
.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

/* MENU BOX (RIGHT SIDE) */
.footer-menu-box {
  background: linear-gradient(to right, #1a1a1a, #3a3a3a);
  padding: 12px 25px;
  border-radius: 8px;
}

/* MENU LINKS */
.footer-bottom-links a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.footer-bottom-links a:hover {
  color: #cccccc;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-menu-box {
    width: 100%;
  }
}


.footer-copy span {
  font-weight: 600;
}

.footer-menu-box a {
  display: inline-block;
}


/* FULL WIDTH FOOTER */
.footer-bottom {
  width: 100%;
  background: #000;
  padding: 20px 0;   /* remove side padding */
}

/* INNER CONTENT CONTROL */
.footer-bottom-inner {
  max-width: 1200px;   /* control content width */
  margin: auto;        /* center content */
  padding: 0 20px;     /* small side spacing */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu-box {
  background: linear-gradient(to right, #222, #444);
  border-radius: 10px;
}









/* ===== REMOVE PAGE SIDE GAP ===== */
body {
  margin: 0;
  padding: 0;
}

/* ===== FULL WIDTH FOOTER ===== */
.footer {
  width: 100vw;          /* FULL SCREEN WIDTH */
  margin: 0;
  padding: 0;
}

/* ===== FULL WIDTH BOTTOM BAR ===== */
.footer-bottom {
  width: 100vw;
  background: #000;
  margin: 0;
  padding: 20px 0;
}

/* REMOVE ANY CONTAINER LIMIT */
.footer-bottom-inner {
  width: 100%;
  max-width: 100%;       /* IMPORTANT */
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

