:root {

  /* 🔤 FONT FAMILY */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* 🔠 FONT SIZES (Responsive Clamp) */
  --fs-h1: clamp(32px, 5vw, 75px);
  --fs-h2: clamp(26px, 4vw, 42px);
  --fs-h3: clamp(22px, 3vw, 30px);
  --fs-h4: clamp(18px, 2.5vw, 24px);

  --fs-body-lg: clamp(16px, 1.5vw, 18px);
  --fs-body: clamp(14px, 1.2vw, 16px);
  --fs-small: clamp(12px, 1vw, 14px);

  /* 🎨 BRAND COLORS */
  --color-primary: #2c6da9;
  --color-primary-dark: #1f4f7c;
  --color-primary-light: #4f8fc7;

  /* ⚪ BACKGROUND COLORS */
  --color-bg: #ffffff;
  --color-bg-light: #f5f7fa;

  /* ⚫ TEXT COLORS */
  --color-text-primary: #0f172a;
  /* Heading */
  --color-text-secondary: #475569;
  /* Paragraph */
  --color-text-muted: #94a3b8;

  /* 🔘 BUTTON COLORS */
  --btn-primary-bg: #2c6da9;
  --btn-primary-hover: #1f4f7c;
  --btn-primary-text: #ffffff;

  --btn-secondary-bg: transparent;
  --btn-secondary-border: #2c6da9;
  --btn-secondary-text: #2c6da9;
  --btn-secondary-hover-bg: #2c6da9;
  --btn-secondary-hover-text: #ffffff;

  /* 🔲 BORDER / UI */
  --border-radius: 50px;
  --border-color: #e2e8f0;

  /* 🌫 SHADOW */
  --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.12);

  /* Text Colour */
  --text-primary: #000;





  /* 🔠 FONT SIZES (Responsive) */
  --fs-body: clamp(14px, 1.2vw, 16px);
  --fs-body-lg: clamp(16px, 1.5vw, 18px);
  --fs-small: clamp(12px, 1vw, 14px);

  /* 🎨 TEXT COLORS */
  --color-text-primary: #0f172a;
  /* headings / strong */
  --color-text-secondary: #475569;
  /* paragraph */
  --color-text-muted: #94a3b8;
  /* small text */

  /* 🎯 SPAN COLORS (Highlight system) */
  --color-accent: #2c6da9;
  --color-accent-light: #4f8fc7;


}

body,
html {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1 {
  font-size: var(--fs-h1);
  color: var(--color-text-primary);
  text-transform: capitalize;
  font-weight: 800;
}

.h-dark {
  color: var(--text-primary);
}

h2 {
  font-size: var(--fs-h2);
  text-transform: capitalize;
  font-weight: 800;
}

h3 {
  font-size: var(--fs-h3);
  text-transform: capitalize;
}

a,
li {
  text-decoration: none;
  list-style: none;

}

ul,
li {
  padding: 0;
  margin: 0;
}

p {
  font-family: var(--font-primary);
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
section {
  scroll-margin-top: 100px; 
}

.text-lg {
  font-size: var(--fs-body-lg);
}

.text-sm {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

span {
  font-size: inherit;
  color: inherit;
}
.card {
  transition: all 0.3s ease;
}

.text-accent {
  color: var(--color-accent);
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(135deg, #2c6da9, #4f8fc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted {
  color: var(--color-text-muted);
}
img {
  transition: opacity 0.5s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #2c6da9, #4f8fc7);
  color: var(--btn-primary-text);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f4f7c, #2c6da9);
}

.btn-secondary {
  border: 2px solid var(--btn-secondary-border);
  color: var(--btn-secondary-text);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  background: transparent;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 15px 0;
  background: transparent;
  z-index: 9;
  transition: all 0.3s ease;

}
header .navbar-brand img{
  width: 220px;
  display: block;
}

header.scroll {
  background: var(--btn-primary-text);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

/* Home Banner */
.home {
  width: 100%;
  padding: 180px 0 80px 0;
  background:url('./assets/images/hero-img.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.home .hero-btn{
  background: transparent;
  margin-bottom: 15px;
  padding: 5px 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none;
  outline: none;
  pointer-events: none;
  border-radius: 50px;
}
.home .btn-area{
  display: flex;
  gap: 20px;

}
.home .hero-text .text-accent{
  font-weight: 900;
}

.counter-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  text-align: center;
}


/* About Section */
.about {
  padding: 150px 0 100px 0;
  background: linear-gradient(160deg, #c2e0fc, #fff, #fff,  #d1e1ef);

}

.about .icons {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #b3d8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about .icons i {
  color: var(--btn-primary-hover);
}

.about .card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none;
  border-radius: 15px;
  transition: all 0.3s linear;
}

.about .card:hover {
  transform: translateY(-5px);
}
.about .card-body .card-title{
  font-size: 16px;
  font-weight: 600;
}
.about .about-img{
  position: relative;

}
.about .about-img .since-box{
  width: 150px;
  height: 150px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  border-radius:0 40px 0 40px;
 
}
.about .about-img .since-box .since-content{
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, #2c6da9, #b3d8f8); */
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 20px;
  
}
.about .about-img .since-box .since-content h2{
  font-size: 14px;
  color: var(--border-color);
  font-weight: 500;
  
  
}
.about .about-img .since-box .since-content h3{
  font-size: 20px;
  font-style: italic;
  color: var(--border-color);
  font-weight: 600;
}
.about .about-img img{
  display: block;
  width: 100%;
  border-radius: 50px;
  min-height: 600px;
  height: 100%;
  object-fit: cover;
}

.about .about-content{
  padding: 50px;
}

/* About Section End */

/* Services section */
.services {
  padding: 150px 0 100px 0;
 background: linear-gradient(160deg,  #d1e1ef,  #fff, #fff,  #d1e1ef);
}

.services .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none;
  transition: all 0.6s ease;

}

.services .card .icons {
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2c6da9, #4f8fc7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--btn-primary-text);
}
.services .card .icons i{
  font-size: 20px;
}

.services .card .card-text {
  font-size: 16px;
}
.services .service-box .card:hover{
  background: linear-gradient(  #f0f7fd, #fff, #f0f7fd);
  transform: translateY(-5px);
  transition: all 0.6s ease;
  z-index: 1;
  border-radius: 20px;
}

/* Service Section End */

/* How It's Works */


.ai {
  padding: 150px 0 100px 0;
  background: linear-gradient(135deg, #011528 , #4f8fc7 100%);
}

.ai .ai-img img{
  width: 100%;
  display: block;
  border-radius: 50px;
}
.ai ul li{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--btn-primary-text);

}
.ai ul li i{
  font-size: 20px;
  color: var(--btn-primary-text);
}

/* How It's Works Section End */

/* Govt  Section  */
.govt {
  padding: 150px 0 0 0;
  background: linear-gradient(160deg, #c2e0fc, #fff, #fff);
}
.govt .govt-img img{
  display: block;
  border-radius: 50px;
  max-width: 750px;
  height: 500px;
  object-fit: cover;
  width: 100%;
}
.govt .govt-content{
  padding: 50px;
}
.govt .govt-content ul li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  align-items: center;
  font-size: 15px;
}
.govt .govt-content ul li i{
  font-size: 8px;
  color: #4f8fc7;
}
/* Govt  Section End  */

/* Security section  */
.security {
  padding: 0 0 100px 0;
  background: linear-gradient(160deg,  #fff, #fff,  #d1e1ef);
}
.security .govt-img img{
  display: block;
  border-radius: 50px;
  max-width: 750px;
  height: 500px;
  object-fit: cover;
  width: 100%;
}
.security .govt-content{
  padding: 50px;
}
.security ul li{
  display: flex;
  align-items: center;
  gap: 8px;
}
.security ul li i{
  font-size: 8px;
  color: #4f8fc7;
}

/* Security section  */

/* Process Section */
.process{
  padding: 100px 0 80px 0;
  background: linear-gradient(to bottom, #fff, #f0f8ff);
}
.process .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none;
  transition: all 0.6s ease;

}
.process .card:hover{
  transform: translateY(-5px);
 background: linear-gradient(  #f0f7fd, #fff, #f0f7fd);
}
.process .card .card-title{
  font-weight: 900;
}

.process .card .icons {
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2c6da9, #4f8fc7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--btn-primary-text);
  position: relative;
}
.process .card .icons .number{
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #111;
  top: -3px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;

}
.process .card .icons .number span{
  color: var(--btn-primary-text);
  font-size: 11px;
  font-weight: 600;
}

/* Process Section End */

/* Contact Form Section */
.contact-form {
  padding: 80px 0;
}

.contact-form .form-bg {
  background:url('assets/form-bg.png'), linear-gradient(135deg, #2c6da9, #4f8fc7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 80px;
  border-radius: 50px;
  overflow: hidden;
}

.contact-form .header {
  padding: 50px 0 0 0;
}

.contact-form .header h2,
.contact-form .header p {
  color: var(--btn-primary-text);
}

.contact-form .header ul li {
  color: #f5f5f5;
}

.contact-form .form-box {
  margin: 0px auto;
  background: var(--btn-primary-text);
  padding: 50px;
  border-radius: 20px;
}

.contact-form .form-box input,
.contact-form .form-box textarea {
  width: 100%;
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border: none;
  outline: none;
  border-radius: 12px;
  margin-left: 0;
  margin-right: 0;
}

.contact-form .form-box input {
  padding: 15px 10px;
}

.contact-form .form-box textarea {
  padding: 10px;
}

.contact-form .form-box input::placeholder {
  font-size: 14px;
}

.contact-form .form-box button {
  outline: none;
  border: none;
  margin-top: 15px;
}

/* Contact Form Section End */

/* Footer Section*/
footer{
  padding: 80px 0 50px 0;
  background: #e7f0fe;
}
footer .footer-widgets h3{
  padding-bottom: 15px;
}
footer .footer-widgets ul li a{
  color: var(--color-text-secondary);
  transition: all 0.3s linear;
}
footer .footer-widgets ul li a:hover{
  color: var(--color-primary-light);
  padding-left: 5px;
}
footer .socialmedia-widgets .social-media-list{
  display: flex;
  gap: 20px ;
}
footer .socialmedia-widgets .social-media-list li .btn-social-media{
  background: transparent;
  border: 1px solid var(--btn-primary-hover);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: all 0.6s ease;
  
}
footer .socialmedia-widgets .social-media-list li .btn-social-media:hover{
  background: linear-gradient(135deg, #2c6da9, #4f8fc7);
  color: var(--btn-primary-text);
  overflow: hidden;
  border: none;
}
footer .socialmedia-widgets .social-media-list li .btn-social-media i{
  font-size: 18px;
}
/* Footer section end */

/* Top Button */
#topBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;

  background: linear-gradient(135deg, #2c6da9, #4f8fc7);
  color: #fff;

  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;

  font-size: 20px;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(44,109,169,0.3);
}

/* Show button */
#topBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
#topBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44,109,169,0.4);
}

/* Top button section end */

/* Loader Section */
#site-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #0b5cff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-content h4 {
    font-size: 18px;
    letter-spacing: 2px;
    color: #111;
    margin: 0;
    font-weight: 600;
}

#site-loader.hide-loader {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Loader Section End */




/*=============Responsive========== */


@media(max-width: 776px){
  /* Header */
  header{
    background: var(--btn-primary-text);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  }
  header .navbar-brand img{
  width: 180px;
  display: block;
}

  /* Header Section ENd */
  /* Home Section */
  .home{
    padding: 150px 0 0 100px 0;
  }
  .home .btn-area{
    flex-direction: column;
    width: 80%;
    
    
}

.home .btn-area a{
  text-align: center;
}
.counter-section{
  flex-direction: column;
  align-items: start;
}
/* Home Section End */

/* About Section */
.about .about-img img,
.govt .govt-img img,
.security .govt-img img{
  height: auto;
  border-radius: 20px;
}
.about .about-content,
.govt .govt-content,
.security .govt-content{
  padding: 0;
}
/* About Section End */

/* Contact Form */
.contact-form .form-bg{
  padding: 50px 15px;
  border-radius: 20px;
}
.contact-form .form-box{
  padding: 25px  15px;
  border-radius: 15px;
}
.contact-form button{
  display: inline-block;
  width: 80%;
  margin: 0 auto;
}
/* COntact FOrm Section End */
}

/* Sectio Pading */
@media(max-width: 776px){
  .medium{
    padding: 80px 0;
  }
  .govt{
    padding-top: 80px;
  }
  .security{
    padding-bottom: 80px;
  }
}