/* =========================
   GLOBAL RESET
========================= */
/* =========================
   GLOBAL RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   BODY
========================= */
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#333;
    background:#ffffff;
    overflow-x:hidden; /* prevent side scroll */
}

/* =========================
   CONTAINER (FIXED 🔥)
========================= */
.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   IMAGES
========================= */
img{
    max-width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

/* =========================
   LINKS
========================= */
a{
    text-decoration:none;
    color:inherit;
}

/* =========================
   LIST
========================= */
ul{
    list-style:none;
}

/* =========================
   BUTTON
========================= */
.btn{
    display:inline-block;
    padding:clamp(10px,1.2vw,14px) clamp(18px,2vw,26px);
    background:#D50000;
    color:#ffffff;
    border-radius:6px;
    transition:0.3s;
    font-size:clamp(14px,1vw,16px);
}

.btn:hover{
    background:#b30000;
}

/* =========================
   SECTION SPACING
========================= */
.section{
    padding:clamp(50px,6vw,90px) 0;
}

/* =========================
   FLEX
========================= */
.flex{
    display:flex;
    flex-wrap:wrap; /* important */
}

.flex-center{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.flex-between{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* =========================
   GRID
========================= */
.grid{
    display:grid;
    width:100%;
}

.grid-2{
    grid-template-columns:repeat(2,1fr);
    gap:clamp(15px,2vw,30px);
}

.grid-3{
    grid-template-columns:repeat(3,1fr);
    gap:clamp(15px,2vw,30px);
}

.grid-4{
    grid-template-columns:repeat(4,1fr);
    gap:clamp(15px,2vw,30px);
}

/* =========================
   TEXT ALIGN
========================= */
.text-center{
    text-align:center;
}

/* =========================
   COLORS (Brand)
========================= */
.primary-color{
    color:#D50000;
}

.bg-primary{
    background:#D50000;
}

.bg-dark{
    background:#000;
    color:#fff;
}

.bg-light{
    background:#f5f5f5;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* TABLET */
@media(max-width:992px){

    .container{
        max-width:90%;
    }

    .grid-4{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:768px){

    .container{
        max-width:100%;
        padding:0 15px;
    }

    .grid-3,
    .grid-2{
        grid-template-columns:1fr;
    }

}

/* SMALL MOBILE */
@media(max-width:480px){

    .btn{
        width:100%;
        text-align:center;
    }

}

/* =========================
   4K / LARGE SCREENS
========================= */
@media(min-width:1600px){

    .container{
        max-width:1900px;
    }

}


/* =============================
NAVIGATION BAR
============================= */



/* =============================
TOP BAR
============================= */
/* =============================
TOP BAR
============================= */

.top-bar{
    width:100%;
    background:#000000;
    color:#ffffff;
    font-size:clamp(11px,0.9vw,14px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    font-weight:600;
}

.top-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:6px 20px;
}

.top-left{
    letter-spacing:0.3px;
}

.top-right{
    font-weight:600;
}

/* =============================
HEADER
============================= */

.main-header{
    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 20px;
}

/* LOGO */

.logo img{
    height:clamp(55px,5vw,75px);
}

/* MENU */

.nav-menu ul{
    display:flex;
    gap:clamp(20px,2.5vw,40px);
}

.nav-menu ul li{
    position:relative;
}

.nav-menu ul li a{
    color:#000;
    font-size:clamp(14px,1vw,17px);
    font-weight:500;
    position:relative;
    transition:0.3s;
    padding:5px 0;
}

/* HOVER LINE */

.nav-menu ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#D50000;
    transition:0.3s;
}

.nav-menu ul li a:hover::after{
    width:100%;
}

.nav-menu ul li a:hover{
    color:#D50000;
}

/* RIGHT SIDE */

.nav-right{
    display:flex;
    align-items:center;
    gap:clamp(12px,1.5vw,22px);
}

/* PHONE */

.nav-phone{
    color:#000;
    font-size:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:6px;
}

/* BUTTON */

.quote-btn{
    background:#D50000;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
    white-space:nowrap;
}

.quote-btn:hover{
    background:#b30000;
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(213,0,0,0.4);
}

/* MOBILE MENU ICON */

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* =============================
TABLET (<=992px)
============================= */

@media(max-width:992px){

    .nav-container{
        padding:10px 15px;
    }

    .nav-phone{
        display:none;
    }

    .quote-btn{
        display:none;
    }

}

/* =============================
MOBILE NAV (<=768px)
============================= */

@media(max-width:768px){

    /* TOP BAR */
    .top-container{
        flex-direction:column;
        text-align:center;
        gap:4px;
        padding:6px 10px;
    }

    .top-left{
        font-size:11px;
    }

    .top-right{
        display:none;
    }

    /* NAV */

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .nav-menu.active{
        display:block;
    }

    .nav-menu ul{
        flex-direction:column;
        text-align:center;
        padding:20px 0;
        gap:0;
    }

    .nav-menu ul li{
        margin:15px 0;
    }

    .nav-menu ul li a{
        font-size:16px;
    }

}

/* =============================
SMALL MOBILE (<=480px)
============================= */

@media(max-width:480px){

    .logo img{
        height:50px;
    }

    .menu-toggle{
        font-size:24px;
    }

}

/* =============================
4K / LARGE SCREENS
============================= */

@media(min-width:1600px){

    .nav-container,
    .top-container{
        max-width:1900px;
    }

    .nav-menu ul{
        gap:50px;
    }

}
/* =============================
HERO SECTION
============================= */

/* =============================
HERO SECTION
============================= */

/* .hero-section{
position:relative;
height:600px;
background:url('../images/cctv-banner.jpg') center/cover no-repeat;
display:flex;
align-items:center;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.hero-container{
position:relative;
max-width:1100px;
margin:auto;
padding:0 20px;
color:white;
}



.hero-badges{
display:flex;
gap:15px;
margin-bottom:25px;
flex-wrap:wrap;
}

.hero-badges span{
background:rgba(255,255,255,0.1);
padding:6px 12px;
border-radius:4px;
font-size:13px;
}




.hero-container h1{
font-size:48px;
line-height:1.3;
margin-bottom:20px;
font-weight:700;
}



.hero-container p{
font-size:18px;
max-width:700px;
margin-bottom:30px;
color:#ddd;
}




.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.hero-btn-primary{
background:#B30000;
color:white;
padding:14px 28px;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.hero-btn-primary:hover{
background:#B30000;
}

.hero-btn-secondary{
border:2px solid white;
padding:12px 26px;
border-radius:6px;
color:white;
transition:0.3s;
}

.hero-btn-secondary:hover{
background:white;
color:black;
}




.hero-highlights{
display:flex;
gap:50px;
}

.hero-point h3{
font-size:26px;
color:#B30000;
margin-bottom:5px;
}

.hero-point p{
font-size:14px;
color:#ccc;
} */


/* =============================
MOBILE
============================= */

/* =============================
MOBILE HERO FIX
============================= */

/* @media(max-width:768px){

.hero-section{
height:auto;
padding:20px 0px;
text-align:center;
}



.hero-badges{
justify-content:center;
gap:8px;
margin-bottom:15px;
}

.hero-badges span{
font-size:11px;
padding:5px 10px;
}



.hero-container h1{
font-size:26px;
line-height:1.3;
margin-bottom:12px;
}



.hero-container p{
font-size:14px;
margin-bottom:20px;
}



.hero-buttons{
flex-direction:column;
gap:12px;
margin-bottom:25px;
}

.hero-btn-primary,
.hero-btn-secondary{
width:100%;
max-width:260px;
margin:auto;
}



.hero-highlights{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
margin-top:10px;
}

.hero-point h3{
font-size:18px;
margin-bottom:3px;
}

.hero-point p{
font-size:11px;
}

} */





/* =============================
GOVERNMENT PROJECTS SECTION
============================= */









/* =============================
GOVERNMENT PROJECTS SECTION
============================= */

/* =============================
GOVERNMENT PROJECTS SECTION
============================= */

.gov-projects{
 padding: clamp(30px, 5vw, 60px) 20px;
  background:#f7f7f7;
}

/* TITLE */

.section-title{
  text-align:center;
  font-size:clamp(24px,3vw,38px);
  margin-bottom:12px;
}

.section-subtitle{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:clamp(30px,4vw,60px);
  color:#666;
  font-size:clamp(14px,1.2vw,16px);
}

/* GRID (SMART RESPONSIVE) */

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(15px,2vw,30px);
}

/* CARD */

.project-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.35s;
  display:flex;
  flex-direction:column;
  height:100%;
}

/* IMAGE */

.project-image{
  height:clamp(160px,12vw,220px);
  overflow:hidden;
}

.project-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

/* CONTENT */

.project-content{
  padding:clamp(18px,2vw,25px);
  flex:1;
}

.project-content h3{
  font-size:clamp(16px,1.4vw,20px);
  margin-bottom:10px;
  color:#B30000;
}

.project-content p{
  font-size:clamp(13px,1vw,15px);
  color:#666;
  line-height:1.6;
}

/* HOVER */

.project-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.project-card:hover img{
  transform:scale(1.1);
}

/* =============================
TABLET (<=992px)
============================= */

@media(max-width:992px){
  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* =============================
MOBILE (<=768px)
============================= */

@media(max-width:768px){

  .projects-grid{
    grid-template-columns:1fr;
  }

}

/* =============================
SMALL MOBILE (<=480px)
============================= */

@media(max-width:480px){

  .section-title{
    font-size:22px;
  }

  .project-content{
    padding:16px;
  }

}

/* =============================
LARGE DESKTOP (1400px+)
============================= */

@media(min-width:1400px){

  .projects-grid{
    grid-template-columns:repeat(4,1fr);
  }

}

/* =============================
4K SCREEN (1800px+)
============================= */

@media(min-width:1800px){

  .projects-grid{
    grid-template-columns:repeat(5,1fr);
  }

}

/* =============================
ULTRA LARGE TV (2200px+)
============================= */

@media(min-width:2200px){

  .projects-grid{
    grid-template-columns:repeat(6,1fr);
  }

}

/* =============================
BRANDS SECTION
============================= */

.brands-section{
padding:20px 20px;
background:#fff;
text-align:center;
}

.brand-title{
font-size:34px;
margin-bottom:10px;
}

.brand-subtitle{
color:#666;
margin-bottom:50px;
}


/* SLIDER */

.brand-slider{
overflow:hidden;
position:relative;
}

.brand-track{
display:flex;
gap:80px;
align-items:center;
animation:brandScroll 20s linear infinite;
}

.brand-track img{
height:80px;

transition:0.3s;
}

.brand-track img:hover{
opacity:1;
transform:scale(1.1);
}


/* ANIMATION */

@keyframes brandScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* =============================
TABLET
============================= */

@media(max-width:992px){

.brand-track{
gap:60px;
}

.brand-track img{
height:55px;
}

}


/* =============================
MOBILE
============================= */

@media(max-width:768px){

.brand-title{
font-size:24px;
}

.brand-track{
gap:40px;
}

.brand-track img{
height:48px;
}

}




/* =============================
WHY SECTION
============================= */

.why-section{
padding:90px 20px;
background:#f7f7f7;
text-align:center;
}

.why-title{
font-size:34px;
margin-bottom:10px;
}

.why-subtitle{
color:#666;
margin-bottom:50px;
}


/* GRID */

.why-track{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* CARD */

.why-card{
background:white;
padding:35px 25px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.why-card img{
width:80px;
margin-bottom:15px;
}

.why-card h3{
font-size:18px;
margin-bottom:10px;
color:#B30000;
}

.why-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}



/* =============================
TABLET
============================= */

@media(max-width:992px){

.why-track{
grid-template-columns:repeat(2,1fr);
}

}



/* =============================
MOBILE SLIDER
============================= */

@media(max-width:768px){

.why-slider{
overflow-x:auto;
scroll-snap-type:x mandatory;
}

.why-track{
display:flex;
gap:20px;
}

.why-card{
min-width:80%;
scroll-snap-align:start;
}

}









/* =============================
RECENT PROJECTS
============================= */

.projects-section{
padding:90px 20px;
background:#fff;
text-align:center;
}

.projects-title{
font-size:34px;
margin-bottom:10px;
}

.projects-subtitle{
color:#666;
margin-bottom:50px;
}


/* GRID */

.projects-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}


/* PROJECT CARD */

.project-item{
position:relative;
overflow:hidden;
border-radius:10px;
}

.project-item img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
}


/* OVERLAY */

.project-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(transparent, rgba(255, 0, 0, 0.7));
color:white;
text-align:left;
}

.project-overlay h3{
font-size:18px;
margin-bottom:5px;
}

.project-overlay p{
font-size:13px;
opacity:0.8;
}


/* HOVER */

.project-item:hover img{
transform:scale(1.1);
}


/* =============================
TABLET
============================= */

@media(max-width:992px){

.projects-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* =============================
MOBILE
============================= */

@media(max-width:768px){

.projects-grid{
grid-template-columns:1fr;
}

.project-item img{
height:200px;
}

.projects-title{
font-size:26px;
}

}








/* form pop up section css srart by rajesh */

/* Popup Overlay */
.popup-overlayl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Container */
.popup-containerl {
    background-color: #000000;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Close Button (X) */
.popup-closel {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

/* Trigger Button */
/* .trigger-button {
    background-color: #c7a135;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px auto;
    display: block;
    transition: background 0.3s ease;
}
.trigger-button:hover {
    background-color: #a88629;
} */

/* Container */
.containerdrpul {
    width: 100%;
    /*padding: 0 20px;*/
}

/* Border color change on focus */
#mobilepul:focus {
    outline: 2px solid #48a32c;
}

/* Red outline when input is invalid */
#mobilepul.invalid {
    outline: 2px solid #B30000;
}

/* Form Section */
.form_sectiondrpul {
    background-color: #000000;
    /*padding: 20px;*/
    border-radius: 20px 0 20px 0;
}

.bookdrpul {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
}

.form-groupdrpul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.form-groupdrpul label {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.form-groupdrpul input,
.form-groupdrpul select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    outline: none;
}

.form-groupdrpul div {
    flex: 1;
    min-width: 250px;
}

/* Submit Button */
.btndrpul {
    margin-top: 15px;
    background-color: #B30000;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: background 0.3s ease;
}
.btndrpul:hover {
    background-color: #a88629;
}

/* Custom Alert Box */
.custom-alertdrpul {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    width: 250px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid red;
}

.alert-contentdrpul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alert-contentdrpul button {
    background-color: blue;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}
.alert-contentdrpul button:hover {
    background-color: darkblue;
}

/* Responsive */
@media (max-width: 600px) {
    .popup-containerl {
        padding: 20px;
    }

    .form-groupdrpul {
        flex-direction: column;
    }

    .form-groupdrpul div {
        min-width: 100%;
    }

    .btndrpul {
        width: 100%;
    }

    /* .trigger-button {
        width: 90%;
    } */
}



/* Arithmetic Captcha Style */
/* Captcha one-row layout style */
.captcha-inline-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    background-color: #3a3f45;
    padding: 8px 12px;
    border-radius: 8px;
}

.captcha-inline-wrapper span {
    color: white;
    font-size: 16px;
    white-space: nowrap;
}

#captchaAnswerpul {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .captcha-inline-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-inline-wrapper span {
        margin-bottom: 5px;
    }

    #captchaAnswerpul {
        width: 100%;
    }
}










/* form pop up css end by rajesh */





/* Default border color */
/* Border color change on focus */
#mobile:focus {
    outline: 2px solid #48a32c; /* Green outline on focus */
}

/* Red outline when input is invalid */
#mobile.invalid {
    outline: 2px solid #B30000; /* Red outline on invalid input */
}




.form_section{
background:#f5f5f7;
padding:40px 20px;
}

.consultation-wrapper{
display:flex;
max-width:1100px;
margin:auto;
border-radius:20px;
overflow:hidden;
}

/* LEFT SIDE FORM */

.consultation-left{
flex:2;
background:#f5f5f7;
padding:40px;
background-image:radial-gradient(#d9d9df 2px,transparent 2px);
background-size:25px 25px;
}

.form_section h2{
font-size:30px;
color:#3f4b6b;
margin-bottom:5px;
}

.doctor-text{
color:#3f4b6b;
margin-bottom:20px;
font-size: 20px;
font-weight: 700;
}

.form-group{
display:flex;
flex-direction:column;
gap:25px;
}

.form-group label{
font-weight:600;
}

.form-group input{
width:100%;
padding:14px;
border:none;
border-radius:10px;
background:#e6e6ea;
font-size:16px;
}

.form-name{
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.captcha-number{
    font-size: 15px;
    font-weight: 10px;
}







/* captcha */

.captcha-inline-wrapperad{
display:flex;
gap:10px;
align-items:center;
}

#captchaAnswerpulad{
flex:1;
padding:10px;
border-radius:6px;
border:none;
}

/* button */

.btn{
margin-top:10px;
background:#B30000;
color:white;
padding:12px 24px;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
width:120px;
}

/* RIGHT SIDE HELP */

.consultation-right{
flex:1;
background:#000000;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

.help-box{
display:flex;
align-items:center;
gap:20px;
color:rgb(255, 0, 0);
}

.phone-circle{
width:70px;
height:70px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#2f3338;
}

.help-text p{
margin:0;
font-weight:600;
}

.help-text h3{
margin:5px 0 0;
font-size:22px;
}

/* MOBILE */

@media(max-width:768px){

.consultation-wrapper{
flex-direction:column;
}

.consultation-left{
padding:25px;
}

.consultation-right{
padding:20px;
justify-content:flex-start;
}

.help-box{
width:100%;
}

}




/* =============================
BRANCH SECTION
============================= */


.branches{

padding:80px 20px;

background:#f6f6f6;

font-family:system-ui;

}


.branch-container{

max-width:1100px;

margin:auto;

}


.branch-heading{

text-align:center;

margin-bottom:50px;

}


.branch-heading h2{

font-size:34px;

margin-bottom:10px;

}


.branch-heading p{

color:#666;

}


.branch-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

}


.branch-card{

background:white;

padding:35px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

text-align:center;

transition:0.3s;

}


.branch-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 40px rgba(0,0,0,0.12);

}


.branch-card h3{

margin-bottom:15px;

font-size:22px;

}


.branch-card p{

color:#555;

font-size:15px;

line-height:1.6;

margin-bottom:20px;

}


.branch-phone{

color:#d50000;

font-weight:600;

margin-bottom:20px;

}


.branch-btn{

background:#d50000;

color:white;

padding:12px 22px;

border-radius:6px;

text-decoration:none;

display:inline-block;

}


.branch-btn:hover{

background:#b40000;

}


/* MOBILE */

@media(max-width:768px){

.branch-grid{

grid-template-columns:1fr;

gap:25px;

}

.branch-heading h2{

font-size:28px;

}

}








/* =============================
FOOTER
============================= */




/* =============================
Social sharing
============================= */

.floating-social{
position:fixed;
right:-5px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-social a{
width:48px;
height:48px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#333;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
transition:all .3s ease;
}

.floating-social a:hover{
transform:scale(1.1);
color:#fff;
}

.fb:hover{
background:#1877f2;
}

.insta:hover{
background:#e1306c;
}

.yt:hover{
background:#B30000;
}








/* Mobile Menu Footer Satar */
/* *************************************************************************************************** */
                                        /* mobile menu start */
/* *************************************************************************************************** */

/* Show only on mobile */
/* Hide on desktop by default */
.mobile-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    display: flex;
    justify-content: space-around;
    padding: 2px 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1000;
    border-top:2px solid #B30000;
  }

  .mobile-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    text-decoration: none;
  }

  .mobile-menu .menu-item i {
    font-size: 30px;
    margin-bottom: 4px;
    font-weight: 500;
  }

  .call-icon {
    color: #F8E8D8; /* Bright green */
  }

  .whatsapp-icon {
    color: #25D366; /* WhatsApp green */


  }

  @keyframes ring {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg);
  color:rgb(0, 255, 0);
  font-size:large;
  }
  50% { transform: rotate(-15deg); 
  color:white;
font-size:larger}
  75% { transform: rotate(10deg); 
  color:green;}
  100% { transform: rotate(0deg); }
}

.call-icon {
  color: #F8E8D8; /* Ya aapka preferred color */
  animation: ring 1.5s infinite;
}
  
}


.whatsapp-icon {
  position: relative;
  color: #25D366;
  font-size: 24px;
}

/* Ripple Animation Circle */
.whatsapp-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.3);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 1.5s infinite ease-out;
  z-index: -1; /* Send it behind the icon */
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}







/* Mobile Footer Menu Endt */

/* ===== CCTV PRICING SECTION ===== */

/* .cctv-pricing{
padding:90px 20px;
background:#f5f7fb;
}

.cctv-container{
max-width:1200px;
margin:auto;
text-align:center;
}



.cctv-title{
font-size:36px;
font-weight:700;
color:#000000;
margin-bottom:10px;
position:relative;
}



.cctv-title:after{
content:"";
display:block;
width:60px;
height:3px;
background:#B30000;
margin:12px auto 0;
border-radius:2px;
}

.cctv-subtitle{
color:#666;
margin-bottom:50px;
}



.cctv-pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}



.cctv-card{

background:#ffffff;

padding:40px 30px;

border-radius:16px;

box-shadow:0 20px 45px rgba(0,0,0,0.08);

transition:.35s;

position:relative;

}

.cctv-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,0.15);

}



.featured{

border:2px solid #B30000;

transform:scale(1.08);

box-shadow:0 25px 60px rgba(0,0,0,0.15);

}


.popular-tag{

position:absolute;

top:-14px;

left:50%;

transform:translateX(-50%);

background:#B30000;

color:white;

padding:6px 16px;

font-size:12px;

border-radius:20px;

font-weight:500;

}



.cctv-card h3{
font-size:20px;
margin-bottom:18px;
color:#0f2f57;
}



.cctv-price{

font-size:34px;

font-weight:700;

color:#B30000;

margin-bottom:22px;

}



.cctv-card ul{

list-style:none;

padding:0;

margin-bottom:25px;

}

.cctv-card ul li{

padding:10px 0;

border-bottom:1px solid #eee;

font-size:14px;

color:#444;

position:relative;

padding-left:24px;

}



.cctv-card ul li:before{

content:"✓";

position:absolute;

left:0;

color:#22c55e;

font-weight:bold;

}



.cctv-btn{

display:block;

background:#B30000;

color:white;

padding:13px;

border-radius:8px;

text-decoration:none;

font-size:14px;

font-weight:500;

transition:.3s;

}

.cctv-btn:hover{

background:#1d4ed8;

transform:translateY(-2px);

}



@media(max-width:900px){

.cctv-pricing-grid{
grid-template-columns:1fr;
}

.featured{
transform:scale(1);
}

} */












/* clients section start */


.clients{
  padding:clamp(40px,6vw,90px) 20px;
  background:#ffffff;
  font-family:system-ui;
  text-align:center;
}

/* CONTAINER */

.clients-container{
  width:100%;
  max-width:1200px;
  margin:auto;
}

/* HEADING */

.clients h2{
  font-size:clamp(24px,3vw,38px);
  margin-bottom:10px;
}

.clients p{
  color:#666;
  margin-bottom:clamp(25px,4vw,50px);
  font-size:clamp(14px,1.2vw,16px);
}

/* GRID */

.clients-logos{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(20px,3vw,50px);
  align-items:center;
}

/* LOGO ITEM */

.clients-logos a{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:10px;
}

/* IMAGE */

.clients-logos img{
  max-height:60px;
  width:auto;
  opacity:0.8;
  transition:0.3s;
}

.clients-logos img:hover{
  opacity:1;
  transform:scale(1.08);
}

/* =============================
TABLET (<=992px)
============================= */

@media(max-width:992px){

  .clients-logos{
    grid-template-columns:repeat(3,1fr);
  }

}

/* =============================
MOBILE (<=768px)
============================= */

@media(max-width:768px){

  .clients-logos{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

}

/* =============================
SMALL MOBILE (<=480px)
============================= */

@media(max-width:480px){

  .clients-logos{
    grid-template-columns:1fr;
  }

  .clients-logos img{
    max-height:50px;
  }

}

/* =============================
LARGE DESKTOP (1400px+)
============================= */

@media(min-width:1400px){

  .clients-container{
    max-width:1900px;
  }

  .clients-logos{
    grid-template-columns:repeat(5,1fr);
  }

}

/* =============================
4K SCREEN (1800px+)
============================= */

@media(min-width:1800px){

  .clients-logos{
    grid-template-columns:repeat(6,1fr);
  }

  .clients-logos img{
    max-height:70px;
  }

}

/* =============================
footer start
============================= */


.footer-pro{
  background:black;
  color:#ccc;
  padding-top:70px;
  font-family:system-ui;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

/* COLUMN */
.footer-col h3{
  color:#fff;
  margin-bottom:20px;
  font-size:18px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
}

/* LINKS */
.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#ccc;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#e60000;
}

/* ADDRESS BOX */
.address-box{
  margin-bottom:20px;
}

.address-box h4{
  color:#fff;
  font-size:14px;
  margin-bottom:5px;
}

/* CONTACT */
.contact-info{
  margin:5px 0;
}

/* SOCIAL */
.footer-social{
  margin-top:10px;
}

.footer-social a{
  margin-right:10px;
  color:#ccc;
  font-size:14px;
}

.footer-social a:hover{
  color:#e60000;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid #222;
  text-align:center;
  padding:20px;
  font-size:13px;
  margin-top:40px;
  color:#777;
}

/* =============================
TABLET
============================= */
@media(max-width:992px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* =============================
MOBILE
============================= */
@media(max-width:768px){

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-social a{
    margin:0 8px;
  }

}





/* Banner */



/*Banner */





