*{
margin:0;
padding:0;
box-sizing:border-box;

font-family:Arial, Helvetica, sans-serif;
}

/* space for fixed navbar */

body{
padding-top:70px;
overflow-x:hidden;
}

/* navbar */

.custom-navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 20px 10px rgba(0,0,0,0.3);
z-index:1000;
}

/* logo */

.logo img{
width:140px;
object-fit:cover;
}

/* nav links */

.nav-links{
display:flex;
gap:25px;
align-items:center;
}

/* link style */

.nav-links a{
text-decoration:none;
color:#111;
font-size:17px;
position:relative;
}

/* underline hover effect */

.nav-links a::after{
content:"";
position:absolute;
width:0;
height:2px;
background:#211bc4;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

/* quote button */

.quote-btn{
background:#141178;
color:white !important;
padding:6px 14px;
border-radius:5px;
}

.quote-btn::after{
display:none;
}

/* mobile menu icon */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}


/* NAVBAR */

.custom-navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 20px 10px rgba(0,0,0,0.1);
z-index:1000;
}

/* LOGO */

.logo img{
width:140px;
object-fit:cover;
}

/* NAV LINKS */

.nav-links{
display:flex;
gap:25px;
align-items:center;
}

/* LINKS */

.nav-links a{
text-decoration:none;
color:#111;
font-size:17px;
position:relative;
}

/* HOVER UNDERLINE */

.nav-links a::after{
content:"";
position:absolute;
width:0;
height:2px;
background:#211bc4;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}


/* LAPTOP (1024px) */
/* ======================= */

@media (max-width:1024px){
.logo img{
width:120px;
}

}

/* TABLET (768px) */

@media (max-width:768px){
.logo img{
width:110px;
}

.nav-links a{
font-size:15px;
}
}

/* MOBILE (480px) */

@media (max-width:480px){

.logo img{
width:100px;
margin-bottom:5px;
}

}

/* carousel code */
.carousel-item img{
height:530px;
object-fit:cover;
}
.carousel-overlay{
position: relative;
}

.carousel-overlay::after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
}

.carousel-item img{
height: 530px;
object-fit: cover;
}

.carousel-caption{
bottom: 20%;
z-index: 2;
}

.carousel-caption h1{
font-size: 50px;
font-weight: bold;
}

.carousel-caption p{
font-size: 20px;
}
/* Tablet */

@media (max-width: 992px){
.carousel-slide{
  overflow-x:hidden;
}
 .carousel-inner{
  overflow-x:hidden;
 } 
.carousel-item img{
height:420px;
}

.carousel-caption{
bottom:25%;
}

.carousel-caption h1{
font-size:36px;
}

.carousel-caption p{
font-size:18px;
}


}


/* Mobile */

@media (max-width: 768px){

.carousel-item img{
height:350px;
}

.carousel-caption{
bottom:20%;
padding:0 20px;
}

.carousel-caption h1{
font-size:28px;
}

.carousel-caption p{
font-size:16px;
}

}


/* Small Mobile */

@media (max-width:480px){

.carousel-item img{
height:300px;
}

.carousel-caption{
bottom:2px;
}

.carousel-caption h1{

font-size:22px;
}

.carousel-caption p{
font-size:14px;
}
.carousel-caption button {
  padding:10px;
  font-size:14px;
}
}


.caption-btn{
    background-color:#141178;
    padding: 15px 25px;
    color:white;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
}
/* responsive */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:80px;
left:0;
width:100%;
background:white;
flex-direction:column;
display:none;
text-align:center;
}

.nav-links a{
padding:15px;
border-bottom:1px solid #eee;
}

.nav-links.active{
display:flex;
}

}
/* about section */

.about-section{
  padding: 80px 10%;
  background: #faf8f8;
}

.about-container{
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image{
  flex: 1;
}

.about-image img{
  width: 100%;
  border-radius: 10px;
}

.about-content{
  flex: 1;
}

.about-content h1{
  font-size: 36px;
  font-weight:600;
  margin-bottom: 20px;
  color: #333;
}

.about-content p{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-btn{
  padding: 8px 18px;
  border: none;
  background: #141178;
  color: white;
  font-size: 16px;
  border-radius: 9px;
  cursor: pointer;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}

.about-btn:hover{
  background: #0d0a5e;
}

/* ---------- Tablet Responsive ---------- */
@media (max-width: 992px){

  .about-section{
    padding: 60px 8%;
  }

  .about-container{
    gap: 30px;
  }

  .about-content h2{
    font-size: 30px;
  }

  .about-content p{
    font-size: 15px;
  }

}


/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px){

  .about-container{
    flex-direction: column;
    text-align: center;
  }

  .about-image{
    width: 100%;
  }

  .about-content{
    width: 100%;
  }

  .about-content h2{
    font-size: 26px;
  }

  .about-content p{
    font-size: 14px;
  }

  .about-btn{
    font-size: 14px;
    padding: 8px 16px;
  }

}


/* ---------- Small Mobile ---------- */
@media (max-width: 480px){

  .about-section{
    padding: 50px 6%;
  }

  .about-content h2{
    font-size: 22px;
  }

  .about-content p{
    font-size: 13px;
  }

}
/* WHAT WE DO SECTION */
.what-section{
padding:80px 20px;
background:#e9e6e6;
}
.container{overflow-x:hidden;}
.what-section h1{
text-align:center;
font-weight:600;
margin-bottom:40px;
font-size:36px;
}

/* CARD */

.what-card{
border:none;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
height:100%;


}


.what-card:hover{
transform: translateY(-10px) !important;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.what-card img{
width:100%;
height:220px;
object-fit:cover;
}

.what-card .card-body{
text-align:center;
padding:25px;
}

.what-card .card-title{
font-size:20px;
font-weight:600;
}

.what-card .card-text{
color:#666;
font-size:15px;
}

.what-card .btn{
background:#141178;
border:none;
padding:8px 18px;


}


.what-card .btn:hover{
background:#0d0a5e;
}

.what-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ======================= */
/* LAPTOP (1024px) */
/* ======================= */

@media (max-width:1024px){

.what-section{
padding:70px 30px;
}

.what-section h1{
font-size:32px;
}

.what-card img{
height:200px;
}

}


/* TABLET (768px) */
/* ======================= */

@media (max-width:768px){

.what-section{
padding:60px 20px;
}

.what-section h1{
font-size:28px;
}

.what-card img{
height:180px;
}

.what-card .card-title{
font-size:18px;
}

.what-card .card-text{
font-size:14px;
}

}


/* MOBILE (480px) */
/* ======================= */

@media (max-width:480px){

.what-section{
padding:50px 15px;
}

.what-section h1{
font-size:29px;
}

.what-card img{
height:160px;
}

.what-card .card-body{
padding:20px;
}

.what-card .card-title{
font-size:17px;
}

.what-card .card-text{
font-size:13px;
}

.what-card .btn{
padding:6px 14px;
font-size:14px;
}

}


/* why choose us */
.services-section{
padding:100px 5%;
background:#c7c6c6;
text-align:center;

}

.services-title{
font-size:37px;
color:#121111;
font-weight:bold;
margin-bottom:10px;
}

.services-title span{
color:#2b26b6;
font-size:37px;
}

.services-subtitle{
color:#0d0d0e;
font-size:26px;
margin-bottom:60px;

}

/* GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
width:100%;
max-width:1200px;
margin:auto;
}

/* CARD */

.service-card{
background:#fdfcfc;
padding:30px;
border-radius:12px;
text-align:left;

transition:0.4s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

/* ICON */

.service-card i{
color:#2b26b6;
margin-right:10px;
font-size:23px;
}

/* TITLE */

.service-card h5{
font-size:22px;
margin-bottom:10px;
color:#0a0a74;
}

/* TEXT */

.service-card p{
color:#060606;
line-height:1.6;
font-size:17px;
}

@media (max-width: 992px){

.services-section{
padding:80px 6%;
}

.services-title{
font-size:34px;
}

.services-title span{
font-size:34px;
}

.services-subtitle{
font-size:22px;
margin-bottom:40px;
}

.service-card{
padding:25px;
}

}


/* -------- Mobile -------- */

@media (max-width: 768px){

.services-section{
padding:60px 5%;
}

.services-title{
font-size:28px;
}

.services-title span{
font-size:28px;
}

.services-subtitle{
font-size:18px;
margin-bottom:30px;
}

.services-grid{
gap:20px;
}

.service-card{
padding:20px;
text-align:center;
}

.service-card h5{
font-size:16px;
}

.service-card p{
font-size:13px;
}

}


/* -------- Small Mobile -------- */

@media (max-width:480px){

.services-title{
font-size:24px;
}

.services-title span{
font-size:24px;
}

.services-subtitle{
font-size:16px;
}

.service-card{
padding:18px;
}

.service-card p{
font-size:12px;
}

}

/* gallery section */
.project-gallery{
padding:80px 10%;
text-align:center;
background:#e1dede;
}

/* TITLE */

.gallery-title{
font-weight:600;
font-size:32px;
margin-bottom:20px;
}

/* FILTER BUTTONS */

.gallery-buttons{
margin-bottom:40px;
}

.gallery-buttons button{
padding:8px 23px;
margin:5px;
background:#141178;
color:white;
border-radius:9px;
cursor:pointer;
border:none;
transition:0.3s;
}

.gallery-buttons button:hover{
background:#0c3170;
}

/* GALLERY GRID */

.gallery-container{
display:grid;
margin-top:20px;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
}

.gallery-item{
display:none;
}

.gallery-item img{
width:100%;
height:200px;
object-fit:cover;
border-radius:6px;
transition:0.3s;
}

.gallery-item img:hover{
transform:scale(1.05);
}

/* LEARN MORE BUTTON */

.learn-btn{
display:flex;
justify-content:center;
margin-top:40px;
}

.learn-btn button{
background:#0f0b72;
border:none;
padding:10px 26px;
border-radius:6px;
cursor:pointer;
transition:all 0.3s ease;
}

.learn-btn button a{
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:500;
display:block;
}

.learn-btn button:hover{
background:#1d1990;
transform:translateY(-3px);
}



/* LAPTOP */
/* ======================= */

@media (max-width:1024px){

.project-gallery{
padding:70px 7%;
}

.gallery-title{
font-size:28px;
}

.gallery-container{
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}

.gallery-item img{
height:180px;
}

.learn-btn button a{
font-size:15px;
}

}

/* TABLET */
/* ======================= */

@media (max-width:768px){

.project-gallery{
padding:60px 6%;
}

.gallery-title{
font-size:24px;
}

.gallery-buttons button{
padding:7px 18px;
font-size:14px;
}

.gallery-container{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.gallery-item img{
height:160px;
}

.learn-btn button{
padding:9px 22px;
}

.learn-btn button a{
font-size:14px;
}

}

/* MOBILE */
/* ======================= */

@media (max-width:480px){

.project-gallery{
padding:50px 5%;
}

.gallery-title{
font-size:22px;
}

.gallery-buttons{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.gallery-buttons button{
padding:6px 14px;
font-size:13px;
margin:4px;
}

.gallery-container{
grid-template-columns:repeat(2,1fr);
gap:8px;
}

.gallery-item img{
height:130px;
}

.learn-btn button{
padding:8px 18px;
}

.learn-btn button a{
font-size:13px;
}

}
/* footer code */
/* FOOTER */

.footer{
background: linear-gradient(to left,#3b3b3a,#1c1b1b);
color:#fff;
padding:40px 20px 0;
}

/* GRID LAYOUT */

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* LOGO */

.footer-col img{
width:150px;
margin-bottom:15px;
}

/* HEADING */

.footer-col h3{
margin-bottom:15px;
font-size:18px;
color:#3967b6;
}

/* TEXT */

.footer-col p{
font-size:15px;
line-height:1.6;
color:#ccc;
}

/* LINKS */

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#ccc;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:5px;
}

/* SOCIAL ICONS */

.social-links{
display:flex;
gap:12px;
margin-top:20px;
}

.social-links a{
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
width:40px;
height:40px;
background:#2c2c2c;
border-radius:50%;
color:#fff;
font-size:18px;
transition:0.3s;
}

.social-links a:hover{
background:#141178;
transform:translateY(-3px);
}

/* COPYRIGHT */

.footer-bottom{
text-align:center;
border-top:1px solid #444;
margin-top:30px;
padding:15px;
font-size:14px;
color:#ccc;
}


/* 1024px  */
/* ===================== */

@media (max-width:1024px){

.footer-container{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.footer-col img{
width:140px;
}

}


/* 768px*/
/* ===================== */

@media (max-width:768px){

.footer-container{
grid-template-columns:repeat(2,1fr);
text-align:center;
}

.footer-col img{
margin:auto;
}

.social-links{
justify-content:center;
}

}


/* 480px RESPONSIVE */
/* ===================== */

@media (max-width:480px){

.footer-container{
grid-template-columns:1fr;
gap:20px;
text-align:center;
}

.footer-col img{
margin:auto;
width:130px;
}

.footer-col h3{
font-size:17px;
}

.footer-col p{
font-size:14px;
}

.social-links{
justify-content:center;
}

.footer-bottom{
font-size:12px;
}

}


/* service area code */
.service-area{
  text-align:center;
  padding:60px 20px;
  background-color:rgb(229, 227, 224);
}

.service-area h1{
  font-weight:600;
}

.area-list{
  list-style:none;
  padding:0;
  margin:30px 0;
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap; }

.area-list li{
  font-size:20px;
  padding:10px;
  font-weight:600;
}
.area-btn{
  background-color:#141178;
  padding:10px;
  text-decoration:none;
  border-radius:8px;
  color:white;
  -webkit-border-radius:8px;
  -moz-border-radius:8px;
  -ms-border-radius:8px;
  -o-border-radius:8px;
}

.btn-area:hover{
  background-color:#100d6b
}
/* Tablet */
@media (max-width:768px){
  .area-list{
    gap:20px;
  }

  .area-list li{
    font-size:18px;
  }
}

/* Mobile */
@media (max-width:480px){
  .area-list{
    flex-direction:column; 
    gap:10px;
  }

  .area-list li{
    font-size:16px;
  }
}


/* about page code */

.hero {
  position: relative;
  width: 100%;
  height: 90vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.home-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* semi-transparent dark overlay */
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* LAPTOP (1024px) */
/* ======================= */

@media (max-width:1024px){

.hero{
height:80vh;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

}



/* TABLET (768px) */
/* ======================= */

@media (max-width:768px){

.hero{
height:70vh;
}

.hero-content{
max-width:600px;
}

.hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:16px;
}

}



/* MOBILE (480px) */
/* ======================= */

@media (max-width:480px){

.hero{
height:60vh;
padding:20px;
}

.hero-content{
max-width:100%;
}

.hero-content h1{
font-size:24px;
margin-bottom:15px;
}

.hero-content p{
font-size:14px;
line-height:1.5;
}

}
/* our story section */
.about-section{
  padding:60px 10%;
  background:#f9f9f9;
}

.about-container{
  display:flex;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
  overflow-x:hidden;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:10px;
}

.about-content{
  flex:1;
}

.about-content h2{
  font-size:32px;
  margin-bottom:15px;
}

.about-content p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:15px;
  color:#555;
}

@media (max-width:1024px){

.about-section{
  padding:55px 8%;
}

.about-content h2{
  font-size:28px;
}

.about-content p{
  font-size:15px;
}

}



/* Tablet */
/* ===================== */

@media(max-width:768px){

.about-section{
  padding:50px 7%;
}

.about-container{
  flex-direction:column;
  text-align:center;
  gap:30px;
}

.about-image,
.about-content{
  width:100%;
}

.about-content h2{
  font-size:26px;
}

.about-content p{
  font-size:15px;
}

}



/* Mobile */
/* ===================== */

@media(max-width:480px){

.about-section{
  padding:40px 5%;
}

.about-content h2{
  font-size:22px;
}

.about-content p{
  font-size:14px;
  line-height:1.6;
}

.about-image img{
  border-radius:8px;
}

}


/* mission and vision */
.mv-container{
  width: 100%;
  
  padding: 120px 20px;
  background: #edeaea;
}

 .mission-vision .container{
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
 }

.mv-card{
  background: linear-gradient(to right, #271494, #939395);
  padding: 60px 20px;
  border-radius: 10px;
  flex: 1 1 400px;
  max-width: 430px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.mv-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.mv-card h3{
  font-size: 30px;
  margin-bottom: 20px;
  color: #ececf1;
  font-weight:550;
}

.mv-card p{
  font-size: 17px;
  line-height: 1.7;
  color:white;
}

/* Laptop */
/* ===================== */

@media (max-width:1024px){

.mv-container{
  padding:100px 30px;
}

.mv-card{
  padding:50px 18px;
}

.mv-card h3{
  font-size:26px;
}

.mv-card p{
  font-size:16px;
}

}



/* Tablet */
/* ===================== */

@media (max-width:768px){

.mv-container{
  padding:80px 20px;
}

.mission-vision .container{
  gap:25px;
}

.mv-card{
  flex:1 1 100%;
  max-width:100%;
  padding:40px 18px;
}

.mv-card h3{
  font-size:24px;
}

.mv-card p{
  font-size:15px;
}

}



/* Mobile */
/* ===================== */

@media (max-width:480px){

.mv-container{
  padding:60px 15px;
}

.mv-card{
  padding:30px 15px;
  border-radius:8px;
}

.mv-card h3{
  font-size:20px;
}

.mv-card p{
  font-size:14px;
  line-height:1.6;
}

}
/* service section */


.services-hero{
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg,#1d1a55,#2e2488,#363669);
  color: white;
  overflow: hidden;
  padding: 20px;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  top:0;
  left:0;
}

/* content */

.hero-content{
  position: relative;
  max-width: 800px;
  z-index: 2;
  animation: fadeUp 1.2s ease;
}

.hero-content h1{
  font-size: 55px;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 18px;
  line-height: 1.7;
}

/* floating shapes */

.shapes span{
  position:absolute;
  width:80px;
  height:80px;
  background: rgba(255,255,255,0.1);
  animation: float 8s linear infinite;
}

/* positions */

.shapes span:nth-child(1){
  top:10%;
  left:15%;
}

.shapes span:nth-child(2){
  bottom:20%;
  right:10%;
  width:120px;
  height:120px;
}

.shapes span:nth-child(3){
  top:60%;
  left:5%;
}

.shapes span:nth-child(4){
  top:20%;
  right:25%;
}

/* animations */

@keyframes float{
  0%{
    transform: translateY(0) rotate(0deg);
  }
  50%{
    transform: translateY(-30px) rotate(180deg);
  }
  100%{
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Laptop */
/* ======================= */

@media (max-width:1024px){

.services-hero{
  height:55vh;
}

.hero-content h1{
  font-size:44px;
}

.hero-content p{
  font-size:16px;
}

.shapes span{
  width:70px;
  height:70px;
}

}



/* Tablet */
/* ======================= */

@media (max-width:768px){

.services-hero{
  height:50vh;
  padding:15px;
}

.hero-content h1{
  font-size:34px;
}

.hero-content p{
  font-size:15px;
}

.shapes span{
  width:55px;
  height:55px;
}

.shapes span:nth-child(2){
  width:80px;
  height:80px;
}

}



/* Mobile */
/* ======================= */

@media (max-width:480px){

.services-hero{
  height:auto;
  padding:70px 15px;
}

.hero-content h1{
  font-size:26px;
  margin-bottom:15px;
}

.hero-content p{
  font-size:14px;
  line-height:1.6;
}

.shapes span{
  width:40px;
  height:40px;
}

.shapes span:nth-child(2){
  width:60px;
  height:60px;
}

}

/* service cards */

.categories h1{
  text-align:center;
  color:#0b0b0b;
  font-weight:bold;

}
.category-container{
display:grid;
overflow-x:hidden;
grid-template-columns:repeat(2, 1fr);
gap:30px;
}

.category-box{
background:#f1eeee;
padding:30px;
border-radius:10px;
box-shadow:5px 10px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.category-box:hover{
transform:translateY(-8px);
}

.category-box i{
font-size:40px;
color:#060606;
margin-bottom:15px;
}

.category-box h3{
margin-bottom:10px;
color:#130f7f;
}

.category-box p{
color:#555;
line-height:1.6;
}

/* Laptop */
/* ===================== */

@media (max-width:1024px){

.categories{
padding:70px 8%;
overflow-x:hidden;
}

.category-box{
padding:25px;
}

.category-box i{
font-size:36px;
}

}



/* Tablet */
/* ===================== */

@media (max-width:768px){

.categories{
padding:60px 7%;
overflow-x:hidden;
}

.category-container{
grid-template-columns:1fr;
gap:25px;
overflow-x:hidden;
}

.category-box{
text-align:center;
overflow-x:hidden;
}

.category-box i{
font-size:34px;
}

.category-box h3{
font-size:20px;
}

}



/* Mobile */
/* ===================== */

@media (max-width:480px){

.categories{
padding:50px 5%;
}

.categories h1{
font-size:26px;
}

.category-box{
padding:20px;
}

.category-box i{
font-size:30px;
}

.category-box h3{
font-size:18px;
}

.category-box p{
font-size:14px;
line-height:1.5;
}

}


/* contact us page code */
.contact-section {
  padding: 60px 10px;
  display: flex;
  justify-content: center;
  background: #dbdfdb;
}

.contact-card-horizontal {
 background: #ffffff;
  width: 100%;
  max-width: 1200px;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: 0.4s ease;
}

.contact-card-horizontal:hover {
 will-change: transform;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 220px;
}

.contact-item .icon {
  font-size: 35px;
}

.contact-item h4 {
  margin: 0;
  font-size: 17px;
  font-weight:600;
  color: #222;
}

.contact-item p {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight:600;
  color: #4f514f;
}

/* Responsive */
@media (max-width:1024px){

.contact-card-horizontal{
justify-content:center;
gap:25px;
}

.contact-item{
min-width:200px;
}
.contact-item .icon{
font-size:25px;
}
}


@media (max-width:768px){

.contact-card-horizontal{
padding:35px 25px;
justify-content:center;
gap:20px;
}

.contact-item{
min-width:180px;
}

.contact-item .icon{
font-size:30px;
}

.contact-item h4{
font-size:16px;
}

.contact-item p{
font-size:15px;
}

}


@media (max-width:480px){

.contact-section{
padding:50px 15px;
}

.contact-card-horizontal{
flex-direction:column;
align-items:flex-start;
padding:30px 20px;
gap:18px;
}

.contact-item{
width:100%;
}

.contact-item .icon{
font-size:18px;
}

.contact-item h4{
font-size:13px;
}

.contact-item p{
font-size:12px;
}

}


/* contact map and form */

.contact-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-form{
  background:white;
  padding:40px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h2{
  margin-bottom:25px;
  color:#141f7e;
  font-weight:600;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:15px;
}

.contact-form button{
  background: linear-gradient(to top , #525ebd, #0b18a1);
  color:white;
  border:none;
  padding:10px 23px;
  border-radius:6px;
  cursor:pointer;
  font-size:16px;
}

.contact-form button:hover{
  background: linear-gradient(90deg , #525ebd, #0b18a1);
}



/* MAP */

.contact-map{
  height:540px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
}


/* ===================== */
/* Laptop */
/* ===================== */

@media (max-width:1024px){

.contact-section{
  padding:70px 8%;
}

.contact-container{
  gap:30px;
}

.contact-form{
  padding:35px;
}

.contact-map{
  height:600px;
}

}


/* ===================== */
/* Tablet */
/* ===================== */

@media (max-width:768px){

.contact-section{
  padding:60px 7%;
}

.contact-container{
  grid-template-columns:1fr;
}

.contact-form{
  padding:30px;
}

.contact-map{
  height:400px;
}

.contact-form h2{
  font-size:24px;
}

}


/* ===================== */
/* Mobile */
/* ===================== */

@media (max-width:480px){

.contact-section{
  padding:50px 5%;
}

.contact-form{
  padding:25px;
}

.contact-form input,
.contact-form textarea{
  font-size:14px;
  padding:10px;
}

.contact-form button{
  font-size:14px;
  padding:9px 18px;
}

.contact-map{
  height:320px;
}

}




/* gallery page code */

/* GALLERY SECTION */

.project-gallery{
padding:80px 6%;
text-align:center;
background:#fcfbfb;
}

/* Heading */

.gallery-title{
font-size:40px;
color:#121111;
margin-bottom:10px;
}

.gallery-subtitle{
color:#6f6d6d;
font-size:16px;
margin-bottom:35px;
}

/* FILTER BUTTONS */

.gallery-buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
margin-bottom:40px;
}

.gallery-buttons button{
background:#130f7f;
border:none;
color:#fff;
padding:10px 22px;
border-radius:6px;
cursor:pointer;
font-size:15px;
transition:0.3s;
}

.gallery-buttons button:hover{
background:#1d1990;
transform:translateY(-2px);
}

/* GALLERY GRID */

.gallery-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* IMAGE BOX */

.gallery-item{
overflow:hidden;
border-radius:8px;
}

/* IMAGE */

.gallery-item img{
width:100%;
height:240px;
object-fit:cover;
transition:0.4s;
}

/* IMAGE HOVER EFFECT */

.gallery-item:hover img{
transform:scale(1.08);
}


/* ---------- RESPONSIVE ---------- */

/* Laptop */

@media (max-width:1200px){

.gallery-container{
grid-template-columns:repeat(3,1fr);
}

}


/* Tablet */

@media (max-width:992px){

.gallery-container{
grid-template-columns:repeat(2,1fr);
}

.gallery-title{
font-size:34px;
}

}


/* Mobile */

@media (max-width:600px){

.project-gallery{
padding:60px 5%;
}

.gallery-container{
grid-template-columns:1fr;
}

.gallery-buttons{
flex-direction:column;
align-items:center;
}

.gallery-buttons button{
width:200px;
}

.gallery-title{
font-size:28px;
}

.gallery-subtitle{
font-size:14px;
}

.gallery-item img{
height:220px;
}

}






/* POPUP BACKGROUND */
.form-popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* FORM BOX */
.form-container{
  background: #ffffff;
  padding: 15px;
  width: 500px;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
      
}


/* CLOSE BUTTON */
.close-btn{
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #242222;
}


/* HEADING */
.form-container h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}


/* PARAGRAPH */
.form-container p{
  font-size: 14px;
  color: #666;
}


/* INPUT FIELDS */
.form-container input,
.form-container textarea{
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}


/* INPUT FOCUS */
.form-container input:focus,
.form-container textarea:focus{
  border-color: #6a63c6;
}


/* TEXTAREA */
.form-container textarea{
  min-height: 90px;
  resize: none;
}


/* SUBMIT BUTTON */
.form-submit{
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(to top , #6765bb, #09098d);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit:hover{
background: linear-gradient(90deg , #525ebd, #0b18a1);
}
/* popup message after form submit */
.popup-message{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  padding:20px;
  z-index:9999;
}
.popup-content{
  background:#fff;
  padding:35px 30px;
  border-radius:12px;
  text-align:center;
  width:100%;
  max-width:400px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.popup-content h2{
  font-size:26px;
  margin-bottom:10px;
}

.popup-content p{
  font-size:16px;
  line-height:1.5;
}

.close-popup{
  position:absolute;
  top:12px;
  right:15px;
  cursor:pointer;
  font-size:22px;
}

/* Laptop */
/* ======================= */

@media (max-width:1024px){

.form-container{
  width:450px;
  padding:18px;
}

.form-container h2{
  font-size:26px;
}

.popup-content{
  max-width:380px;
}

}


/* ======================= */
/* Tablet */
/* ======================= */

@media (max-width:768px){

.form-container{
  width:100%;
  max-width:420px;
  padding:20px;
}

.form-container h2{
  font-size:24px;
}

.form-container input,
.form-container textarea{
  font-size:14px;
  padding:11px;
}

.form-submit{
  font-size:15px;
  padding:12px;
}

.popup-content{
  max-width:340px;
  padding:30px 25px;
}

.popup-content h2{
  font-size:22px;
}

.popup-content p{
  font-size:15px;
}

}


/* ======================= */
/* Mobile */
/* ======================= */

@media (max-width:480px){
.form-popup{
  align-items:flex-start;
  overflow-y:auto;
  padding:20px 10px;
}

.form-container{
  margin-top:20px;
  margin-bottom:20px;
  max-height:90vh;
  overflow-y:auto;
}
.form-container h2{
  font-size:20px;
}

.form-container p{
  font-size:13px;
}

.form-container input,
.form-container textarea{
  font-size:13px;
  padding:10px;
}

.form-submit{
  font-size:14px;
  padding:11px;
}

.popup-content{
  max-width:90%;
  padding:25px 20px;
}

.popup-content h2{
  font-size:20px;
}

.popup-content p{
  font-size:14px;
}

.close-btn,
.close-popup{
  font-size:20px;
}