/* Support Icon Start */

/*=================== Whatsapp Start====================*/

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
    z-index: 10;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulsewhatsapp;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulsewhatsapp {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
  100% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}

}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

/*=================== Whatsapp End====================*/

/*=================== Call Start====================*/

.btn-call-pulse {
	background: #2553d3;
	color: white;
	position: fixed;
	bottom: 20px;
	left: 20px;
    z-index: 10;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulsecall;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulsecall {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 101, 211, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
  100% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}

}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

/*=================== Call End====================*/

/* Support Icon End */


/* Humburger menu start*/

/* Style the navigation menu */
.topnavmob {
    background-color: white;
    position: fixed;
    margin: 0px 0px 0px 0px; 
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 4);   
  }
  
  /* Hide the links inside the navigation menu (except for logo/home) */
  .topnavmob #myLinks {
    display: none;
    background-color:#333 ;
  }
  
  /* Style navigation menu links */
  .topnavmob a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .topnavmob a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  /* Add a grey background color on mouse-over */
  .topnavmob a:hover {
    background-color: #333;
    color: white;
  }
  
  /* Style the active link (or home/logo) */
  .active {
    background-color: #04AA6D;
    color: white;
  }
/* Humburger menu start*/

/* Style The Dropdown Button Humburger Menu */
.dropbtnmob {
    background-color: #333;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdownmob {
    position: relative;
    display: inline-block;
  }
  
  .dropdownmob-content {
    display: none;
    position: absolute;
    background-color: #333;
    width:max-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    height:auto;
  }
  
  .dropdownmob-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdownmob-content a:hover {background-color: #f1f1f1}
  
  .dropdownmob:hover .dropdownmob-content {
    display: block;
  }
  
  .dropdownmob:hover .dropbtnmob {
    background-color: #333;
  }


@media (min-width:769px){
    .topnavmob{
        display: none;
    }
}
@media (max-width:768px){
    .hero{
        display: none;
    }
    .sysnav{
        display: none;
    }
}





/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f72585;
    color: #ffffff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 5px;
    background-color:white ; /*previously color was #ffb703 yellow*/
    position: fixed;
    width: 100%;
    z-index: 5;
}

.container {
    width: 90%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
    color: Red;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4cc9f0;
}




.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    padding: 0 50px 0 0;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 10px 15px;
    display: block;
}

nav ul li a:hover {
    background-color: #4361ee;
    border-radius: 5px;
}

/* Dropdown Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 40px;
    left: 0;
    width: 220px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    color: black;
    padding: 10px;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px 50px;
    background: #560bad;
    color: white;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*in this hero h1 text for some better look , added design color as per customer guide line*/
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@700&display=swap');

.hero-text h1 {
   /* font-size: 38px;*/
    /*color: #4cc9f0;*/
    
.Reliable {
    font-family: 'Pacifico', cursive;
    font-size: 36px;
    font-weight: bold;
    color: red;
}

.Professional {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: red;
}

.and {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: red;
    margin: 0 5px;
}


}

.hero-text p {
    font-size: 18px;
    margin: 20px 0;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.btn.primary {
    background: #3a0ca3;
    color: white;
}

.btn.primary:hover {
    background: #4361ee;
}

.btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #4cc9f0;
}

.btn.secondary:hover {
    background: #4cc9f0;
    color: #3a0ca3;
}

/* Hero Image */
/*banshidhar*/
/*.hero-image {
    width: 45%;
}*/
.hero-image {
    width: 45%;
   padding: 40px 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/*Banshidhar*/
/*.hero-image img {
    width: 100%;
    border-radius: 10px;
}*/


/* Color Palette */
:root {
    --primary: #f72585;
    --secondary: #7209b7;
    --accent: #3f37c9;
    --background: #4cc9f0;
    --text-dark: #432818;
    --text-light: #ffe6a7;
}

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background); /* Keeping the same background */
    color: var(--text-dark);
}

/* Section Layout */
.services-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
}

/* Left Side - Services Intro */
.services-intro {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.services-intro h2 {
    font-size: 32px;
    color: var(--primary);
}

.services-intro p {
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

/* ✨ Improved Button Hover Effect */
.btn:hover {
    background-color: var(--secondary);
    transform: scale(1.05);  /* Slightly enlarges on hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Adds soft glow effect */
}

/* Right Side - Service Cards */
.services-list {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

/* ✨ Improved Service Card Hover Effect */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger hover shadow */
}

.service i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out; /* Smooth color change */
}

/* ✨ Icon Color Change on Hover */
.service:hover i {
    color: var(--primary); /* Makes the icon pop on hover */
}

.service h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    color: var(--text-dark);
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #e0e0f8;
}

.contact-left {
    width: 40%;
}

.contact-left h2 {
    font-size: 28px;
    color: #333;
}

.contact-left p {
    font-size: 16px;
    color: #555;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    margin: 10px 0;
    transition: 0.3s ease;
    text-align: center;
}

.social-icons img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Hover Effects */
.whatsapp:hover { color: #25d366; }
.facebook:hover { color: #1877f2; }
.instagram:hover { color: #e4405f; }

.contact-right {
    width: 50%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    width: 100%;
}

table {
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #3f37c9;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #4361ee;
}

footer {
    text-align: center;
    padding: 20px;
    /*background-color: #ffb703;*/
    background: linear-gradient(to right, #1be7ff, #4361ee);
    color: white;
    margin-top: 20px;
}
/*Improved Dropdown & Smooth Scrolling*/
/* Smooth Scrolling for Better User Experience */
html {
    scroll-behavior: smooth;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 200px;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: block;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background-color: var(--primary);
    color: white;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
/*for model*/
/* Hero Section */
.hero {
    background: linear-gradient(to right, #1be7ff, #4361ee);
    color: white;
   /* padding: 80px 20px;*/
  padding: 150px 70px;
}

.hero-text {
    width: 50%;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.primary {
    background: #f72585;
    color: white;
}

.secondary {
    background: #4cc9f0;
    color: white;
}

.hero-image img {
    width: 500px;
    border-radius: 10px;
}

/* Modal */
/* Modal Background */
.modal {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto; /* Enable scrolling */
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    max-height: 90vh; /* Prevents content from overflowing */
    overflow-y: auto; /* Enables scrolling inside modal */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Form Styling */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-content label {
    font-weight: bold;
}

.modal-content input, 
.modal-content select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Submit Button */
.submit-btn {
    background-color: var(--primary);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.submit-btn:hover {
    background-color: var(--secondary);
}


/*==================================*/
/*@Added Media Queries for mobile and desktop screen */

/* Mobile Navigation */
/*Step-1 Make Navigation Responsive*/
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none; /* Hide menu by default */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #ffb703;
        text-align: center;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .menu-icon {
        display: none;
    }
}

/*step-2  Hero Section Responsive*/
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-left: 0px;
    }

    .hero-text {
        width: 100%;
        font-size: 30px;
        margin-left: 0px;
        text-align: center;
        width: 100%;
    }


    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

   /* .hero-image {
        width: 100%;
        margin-top: 20px;
      
    }

    .hero-image img {
        max-width: 100%;
    }*/
  /*banshi*/
  .hero-image {
        width: 100%;
        margin-top: 20px;
    }

    .slideshow-container {
        display: flex;
        width: auto;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        display:grid;
    }
}



/*Step-3  Service Cards Responsive*/
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr; /* Stack services vertically */
    }
}

/*step-4  Contact Section Responsive*/
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-left, .contact-right {
        width: 100%;
        padding: 20px;
    }
}


/*top and main header*/
/* Top Header Styling */
/*display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #ffb703;
    position: fixed;
    width: 100%;
    z-index: 5; */

.top-header {
    background-color: #003366;
    color: white;
    padding: 15px 50px;
    display: flex;
    justify-content: none;
    align-items: center;
    font-size: 14px;
 box-shadow: 0 2px 5px rgba(0, 0, 0, 4);
    width: 100%;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-item img {
    width: 40px;
    height: 40px;
}

.top-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.8; /* Ensures text is exactly as per image */
}

.top-item span {
    font-size: 12px;
}

.top-item strong
{
  font-size: 14px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Main Header Styling */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1px 1px;
  width:100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 4);
}

/*=======Campany Logo Name font design start =========*/
/* Import High-Quality Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&family=Raleway:wght@900&display=swap');

/* Modern Premium Title */
.sandeepa-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to right, #007bff, #00c3ff, #00ff99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}

/* Sharp Glow Effect */
.sandeepa-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(0, 195, 255, 0.2);
    filter: blur(20px);
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

/* Futuristic 3D Light Reflection */
.sandeepa-title::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: -2;
}

/* Smooth Neon Glow Animation */
@keyframes glow-effect {
    0% {
        text-shadow: 0px 0px 10px rgba(0, 195, 255, 0.8);
    }
    100% {
        text-shadow: 0px 0px 20px rgba(0, 255, 153, 1);
    }
}

.sandeepa-title {
    animation: glow-effect 2s infinite alternate;
}

/*==Company font design End==*/

/*=======Campany Logo Name font design start for mobile view =========*/
/* Import High-Quality Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&family=Raleway:wght@900&display=swap');

/* Modern Premium Title */
.sandeepa-titlemob {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to right, #007bff, #00c3ff, #00ff99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}

/* Sharp Glow Effect */
.sandeepa-titlemob::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(0, 195, 255, 0.2);
    filter: blur(20px);
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

/* Futuristic 3D Light Reflection */
.sandeepa-titlemob::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: -2;
}

/* Smooth Neon Glow Animation */
@keyframes glow-effect {
    0% {
        text-shadow: 0px 0px 10px rgba(0, 195, 255, 0.8);
    }
    100% {
        text-shadow: 0px 0px 20px rgba(0, 255, 153, 1);
    }
}

.sandeepa-titlemob {
    animation: glow-effect 2s infinite alternate;
}

/*==Company font design End==*/

/* Preloader Fullscreen when open website in browser */
.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
    z-index: 9999;
}

/* Logo Styling */
.preloader-logo {
    width: 150px; /* Adjust as needed */
    height: auto;
    animation: pulse 3s infinite alternate;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Hide Content Initially */
.content {
    opacity: 0;
    transition: opacity 1s ease-in;
    margin-top: 50px;
}

/* Slideshow Container */
.slideshow-container {
    width: 100%;
    max-width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Images inside the Slideshow */
.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Show only the active image */
.slide.active 
{
    opacity: 1;
}

/* Responsive Fixes */





