* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: white;
    overflow-x: hidden;
}


.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    z-index: 1000;
}

.logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

nav.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.link:hover,
.link.active {
    color: #4a7cff;
}

.search-icon {
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #4a7cff;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}





/* ===========================
   SECTION TITLE
=========================== */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    padding-top: 55px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, #0033cc, #4a7cff);
    margin: 8px auto 0;
    border-radius: 2px;
}


/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background .background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 20, 0.65) 45%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* Main container */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 460px;
  color: #fff;
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 13px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 500;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 5px 10px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(160deg, #0a1a8f, #000);
  color: #fff;
  border: 2px solid #0033cc;
  box-shadow: 0 0 18px rgba(0, 51, 204, 0.5);
}

.btn.primary:hover {
  color: #0033cc;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn.secondary:hover {
  border-color: #0033cc;
  color: #4a7cff;
}

/* RIGHT BUILDING IMAGE */
.hero-building {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-building img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 10px 50px rgba(74, 124, 255, 0.4));
  border-radius: 6px;
  object-fit: cover;
}

/* ===========================
   ABOUT / WHO WE ARE
=========================== */
.about-section {
  background: radial-gradient(ellipse at top center, #06102a 0%, #000 70%);
  padding-bottom: 60px;
}

.about-container {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 70px;
  display: flex;
  gap: 55px;
  align-items: flex-start;
}

/* IMAGE */
.about-image img {
  width: 360px;
  max-width: 100%;
  border-radius: 6px;
  filter: drop-shadow(0 0 40px rgba(74, 124, 255, 0.5));
  display: block;
}

/* CONTENT */
.about-content {
  flex: 1;
  padding-top: 5px;
}

.about-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.about-content h4 {
  font-size: 13px;
  font-weight: 500;
  color: #5a8bff;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 13px;
  line-height: 1.8;
  color: #b8c8ff;
  margin-bottom: 12px;
}

.about-content a {
  color: #4a7cff;
  text-decoration: none;
  font-weight: 600;
}

.about-content a:hover {
  color: #00c6ff;
}

/* INFO BOXES */
.info-boxes {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.info-cards {
  background: linear-gradient(145deg, #050c25, #020511);
  border: 1px solid rgba(74, 124, 255, 0.3);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(30, 64, 255, 0.1);
  transition: 0.3s ease;
}

.info-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(30, 64, 255, 0.35);
  border-color: rgba(74, 124, 255, 0.55);
}

.info-cards span {
  font-size: 22px;
  display: block;
  margin-bottom: 7px;
}

.info-cards h5 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.info-cards p {
  font-size: 11px;
  color: #8aabff;
  line-height: 1.5;
  margin-bottom: 0;
}




.services{
padding:80px 20px;
text-align:center;
}

.services h2{
font-size:32px;
margin-bottom:70px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap: 0px;
max-width:1100px;
margin:auto;
}

.service-card{
position:relative;
text-align:center;
}

.service-card2{
    display: flex;
    flex-direction: column;
  position: relative;
  text-align: center;
  margin-top: 65px;
}

/* rectangle background */

.bg-box{
width:160px;
height:200px;
background:linear-gradient(180deg,#4e8cff,#000);
border-radius:10px;
margin:auto;
position:absolute;
top:40px;
left:50%;
transform:translateX(-50%);
z-index:1;
}

.bg-box2{
width:160px;
height:200px;
background:linear-gradient(180deg,#00c6ff,#000);
border-radius:10px;
margin:auto;
position:absolute;
top:40px;
left:50%;
transform:translateX(-50%);
z-index:1;
}

/* image */

.service-card img{
width:250px;
position:relative;
z-index:2;
}

/* text */

.service-card2 img{
  margin-top: 0px;
width:250px;
position:relative;
z-index:2;
}

.service-card h3{
font-size:15px;
margin-top:30px;
line-height:1.4;
}

.service-card2 h3{
font-size:15px;
line-height:1.4;
}



/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    z-index: 1; /* Behind navbar */
    overflow: hidden;
}
        
.hero-section-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 650px;
    z-index: 0; /* Behind hero content */
}

.section-background{
    position: absolute;
    width: 100%;
    height: 650px;
    color: #000080;
}
 

/* MAIN CONTAINER */
.hero-section-container {
  position: relative;
  z-index: 2;
  width: 100%;
  top: 250px;
  max-width: 1300px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.hero-section-text {
  max-width: 1000px;
  color: #fff;
}

.hero-section-text h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 5px;
}

.hero-section-text p {
    font-size: 20px;
    line-height: 1.6;
    padding-left: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    display: flex;
    font-family: "Montserrat-SemiBold", Helvetica;
    letter-spacing: 0;
    line-height: normal;
}


.about-company{
    max-width:1300px;
    margin:auto;
    padding:20px 20px;

}

.about-company h2{
    color:#000080;
    margin-bottom:5px;
    text-align: center;
}

.about-company h4{
    margin-bottom:20px;
    text-align: center;
}

.about-text{
    color:#fff;
    line-height:1.6;
    max-width:1300px;
    text-align: justify;
    margin:auto;
}

.about-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:25px;
    flex-wrap:wrap;
}

.about-card{
    position:relative;
    width:230px;
    background:#0b0b0b;
    border-radius:10px;
    padding:15px;
    text-align:left;
    border-left:3px solid #0a3cff;
}

.about-card p{
    font-size:12px;
    color:#fff;
}

.about-card ul{
    padding-left:15px;
    color:#fff;
    font-size: 12px;  
}

.vertical{
    position:absolute;
    left:-25px;
    top:20px;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-size:13px;
    font-weight: 600;
    color:#0a3cff;
}


.founder-title{
    margin-top:30px;
    color:#0a3cff;
}


.services{
    padding:20px 20px;
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
}

.services h2{
    font-size:42px;
    margin-bottom:10px;
}

.subtitle{
    color:#bbb;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.service-box{
    border:2px solid #1e3aff;
    border-radius:20px;
    padding:30px;
    text-align:left;
    background:rgba(10,10,10,0.9);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px #1e3aff;
}

.service-box h3{
    margin-bottom:15px;
    font-size:18px;
}

.service-box ul{
    padding-left:18px;
    color:#ccc;
}

.service-box ul li{
    margin-bottom:6px;
}


.contact-section {
  background: #000;
  padding: 20px 0 0px;
  font-family: "Segoe UI", sans-serif;
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}


/* LEFT INFO */
.contact-info {
  flex: 1;   
}

.contact-info h3{
  margin-bottom: 15px;
}

.info-con{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.info-card{
    display: grid;
    width: 200px;
    height: 80px;
    align-items: center;
    justify-items: center;
    gap: 5px;
    background: #000;
    padding: 5px 2px;
}

.link-card {
  cursor: pointer;
  text-decoration: none;
  border-radius: 15px;
  border: 3px solid #000080;
}

.link-card p {
    font-size: 13px;
    color: #fff;
}

.link-card:hover,
.info-card:hover {
  box-shadow: 0 0 5px #00c6ff;
}

.link-card:hover p,
.link-card:hover i,
.info-card:hover i,
.info-card:hover p {
  color: #00c6ff;
}



/* SOCIAL */
.contact-info h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #b5c3ff;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  border: 3px solid #000080;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
    border: 3px solid rgba(30,64,255,0.4);
    box-shadow: 0 0 20px #00c6ff;
}

/* FORM */
.contact-form {
  flex: 1;
  background: linear-gradient(180deg, #050814, #02040c);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(30,64,255,0.35);
  box-shadow: 0 0 30px rgba(30,64,255,0.25);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e40ff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #1e40ff;
  border: none;
  border-radius: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #162fd6;
}




/* ===========================
   WHY CHOOSE US
=========================== */
.why-choose {
    padding: 10px 0 60px;
}

.choose-container {
    max-width: 1100px;
    margin: 38px auto 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 185px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 13px;
    color: #d0d8ff;
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #020f40, #0a2080);
    border: 1px solid rgba(74, 124, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 14px rgba(74, 124, 255, 0.3);
}

.center-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image img {
    width: 380px;
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(74, 124, 255, 0.5));
}





/* ===========================
   CTA
=========================== */
.cta {
    background: linear-gradient(135deg, #020617, #050c2f);
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid rgba(74, 124, 255, 0.15);
}

.cta h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    border: 2px solid #000080;
    background: linear-gradient(180deg, #000080, #000000);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s ease;
    box-shadow: 0 0 18px rgba(0, 51, 204, 0.4);
}

.cta-btn:hover {
    color: #00c6ff;
    box-shadow: 0 0 28px rgba(0, 198, 255, 0.5);
}






/* ===========================
   FOOTER
=========================== */
.site-footer {
    margin-top: 15px;
    background: #000;
    padding: 10px 10px;
    text-align: center;
    color: #888;
    position: relative;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c6ff, #1e40ff, #00c6ff, transparent);
    box-shadow: 0 0 10px rgba(30, 64, 255, 0.8);
}

.site-footer p {
    font-size: 12px;
    line-height: 1.7;
}

.footer-link {
    color: #4a7cff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #00c6ff;
    text-shadow: 0 0 8px rgba(0, 198, 255, 0.7);
}





/* =========================
   TABLET RESPONSIVE
   ========================= */

@media (max-width: 1024px) {

.navbar{
    padding: 0 40px;
}

.logo img{
    width:120px;
}

nav.nav{
    gap:20px;
}

.link{
    font-size:11px;
}

.choose-container{
    max-width:900px;
    padding:0 30px;
    gap:30px;
}

.center-image img{
    width:300px;
}

.features{
    width:160px;
}

.feature{
    font-size:12px;
}

.section-title{
    font-size:26px;
}

.cta h3{
    font-size:22px;
}

.hero-container{
padding:0 40px;
gap:40px;
}

.hero-text h1{
font-size:40px;
}

.hero-building img{
max-width:450px;
}

.about-container{
padding:0 40px;
gap:40px;
}

.about-image img{
width:300px;
}

.info-boxes{
grid-template-columns:repeat(4,1fr);
}

.services-grid{
grid-template-columns:repeat(2,1fr);
gap:60px 20px;
}

.hero-section{
    height:550px;
}

.hero-section-background,
.section-background{
    height:550px;
}

.hero-section-container{
    top:200px;
    padding:0 40px;
}

.hero-section-text h1{
    font-size:46px;
}

.hero-section-text p{
    font-size:18px;
    padding-left:30px;
}

.about-company{
    padding:20px 30px;
}

.about-cards{
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}

.about-card{
    width:200px;
}

.services{
    padding:40px 20px;
}

.services h2{
    font-size:36px;
}

.services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service-box{
    padding:25px;
}



.contact-container{
    padding:0 30px;
    gap:40px;
}

.info-con{
    grid-template-columns:repeat(2,1fr);
}

.info-card{
    width:100%;
}

.contact-form{
    padding:25px;
}



}


/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

.navbar{
    padding:0 20px;
}

/* show hamburger */

.hamburger{
    display:block;
}

/* hide menu initially */

nav.nav{
    position:absolute;
    top:72px;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
}

/* when menu active */

nav.nav.active{
    display:flex;
}

.link{
    font-size:14px;
}

.search-icon{
    display:none;
}


.choose-container{
    flex-direction:column;
    align-items:center;
    gap:40px;
}

/* features left & right become grid */

.features{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
    gap:25px;
}

.feature{
    width:120px;
}

.center-image img{
    width:260px;
}

/* titles */

.section-title{
    font-size:24px;
    padding-top: 10px;
}

.section-title::after{
    width:120px;
}

/* CTA */

.cta h3{
    font-size:20px;
}

.cta p{
    font-size:13px;
}

/* footer */

.site-footer p{
    font-size:11px;
}


.hero{
height:auto;
padding:120px 0 60px;
}

.hero-container{
flex-direction:column;
padding:0 30px;
gap:30px;
}

.hero-text{
max-width:100%;
}

.hero-text h1{
font-size:34px;
}


.hero-building img{
max-width:380px;
}

/* ABOUT */

.about-section{
    padding-bottom: 10px;
}

.about-container{
flex-direction:column;
align-items:center;
text-align:center;
padding:0 30px;
}

.about-image img{
width:250px;
}

.info-boxes{
grid-template-columns:repeat(2,1fr);
margin-top: 10px;
}

.info-cards{
    padding: 10px 6px;
}

.info-cards span{
    font-size: 13px;
}

.info-cards h5{
    font-size: 10px;
}

.info-cards p {
    font-size:9px

}



.hero-section{
    height:auto;
    padding:120px 0 60px;
}

.hero-section-background,
.section-background{
    height:100%;
}

.hero-section-container{
    top:0;
    padding:0 25px;
    flex-direction:column;
    text-align:center;
}

.hero-section-text{
    max-width:100%;
}

.hero-section-text h1{
    font-size:36px;
}

.hero-section-text p{
    font-size:16px;
    padding-left:0;
    justify-content:center;
}

/* ABOUT */

.about-text{
    font-size:14px;
}

.about-cards{
    gap:15px;
}

.about-card{
    width:100%;
    max-width:320px;
}

.vertical{
    left:-18px;
}


.services{
    padding:20px 15px;
}

.services h2{
    font-size:30px;
}

.subtitle{
    font-size:14px;
    margin-bottom:20px;
}

.services-grid{
    grid-template-rows:2fr;
    gap:25px;
}

.service-box{
    padding: 10px;
    
}

.service-box h3{
    margin-bottom: 6px;
    font-size: 12px;
    text-align: center;
}

.service-box ul li{
    font-size: 10px;
}

.service-card,
.service-card2{
    margin-top: 0px;
}

.service-card h3{
    font-size: 12px;
    margin-top: 70px;
}

.service-card2 h3{
    order:3;
    font-size: 12px;
    margin-top: 70px;
}


.service-card2 img{
    order: 2;
}

.service-card2, .bg-box2{
    order:1;
}

.bg-box, .bg-box2{
    background: linear-gradient(180deg, #4e8cff, #000);
}

.service-card img,
.service-card2 img{
width:200px;
}


.contact-container{
    flex-direction:column;
    padding:0 25px;
    gap:40px;
}

.info-con{
    grid-template-columns:1fr;
}

.info-card{
    width:100%;
}

.social-icons{
    justify-content:center;
}

.contact-form{
    width:100%;
}

.contact-info {
    width: 100%;
}

.contact-info h3{
    text-align:center;
}

.contact-info h4{
    text-align:center;
}


}