*{
	margin:0px;
}
.content-section {
	max-width: 1180px;
	margin: auto;
	padding: 20px;
}

.content-section h2 {
	font-size: 32px;
	color: #222;
	margin: 30px 0 15px;
	font-weight: 700;
}

.content-section h3 {
	font-size: 24px;
	color: #333;
	margin: 25px 0 12px;
	font-weight: 600;
}

.content-section p {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
	margin: 15px 0 20px 25px;
	padding-left: 0px;
}

.content-section li {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 8px;
}

/* Red Bar at the top */
.top-red-bar {
	width: 100%;
	height: 15px;
	background-color: #e50000;
	/* Matching the red header background */
}

/* Main Section */
.branches-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Heading Style */
.branches-section h2 {
text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
	font-family: 'Poppins', sans-serif;
}

/* Grid Layout for Columns */
.branches-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Column and Bullet List styling */
.branch-column {
	list-style-type: none;
	padding-left: 0px;
}
.branch-column li a{
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #FF6B00, #ff8c1a);
    transition: all 0.3s ease;
	width: 85%;
	text-align: center;
}

.branch-column li a:hover {
    background: linear-gradient(135deg, #ff8c1a, #FF6B00);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
}
.branch-column li {
	position: relative;
	padding-left: 15px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.4;
}

/* Link Styling */
.branch-column li a {
	text-decoration: none;
	transition: color 0.2s ease, text-decoration 0.2s ease;
	font-family: 'Poppins', sans-serif;
}


/*************************** inner pages********************************************* */

.hero {
	padding: 50px 0;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

.hero-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.hero-content {
	width: 55%;
	color: #000;
}

.hero-content h1 {
	font-size: 45px;
	line-height: 1.2;
	margin-bottom: 25px;
}

.hero-content p {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 25px;
}

.hero-list {
	list-style: none;
}

.hero-list li {
	margin-bottom: 12px;
	font-size: 17px;
}

.hero-list li:before {
	content: "✓";
	margin-right: 10px;
	font-weight: bold;
}


/* FORM */

.quote-form {

	width: 400px;

	background: #FF4800;

	padding: 35px;

	border-radius: 25px;

	box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.quote-form h2 {

	text-align: center;

	margin-bottom: 25px;

	color: #ffffff;
}

.quote-form input {
    width: 89%;
    height: 47px;
    margin-bottom: 15px;
    padding: 0 18px;
    border: 1px solid #ddd;
    /* border-radius: 12px; */
    outline: none;
    font-size: 15px;
}

.quote-form input:focus {

	border-color: #ff6b00;
}

.quote-btn {

	width: 100%;

	height: 55px;

	background: #ff6b00;

	border: none;

	border-radius: 12px;

	color: #000;

	font-size: 18px;

	cursor: pointer;

	font-weight: 600;
}


/* COUNTER */

.counter {

	padding: 60px 0;
}

.counter-wrap {

	display: grid;

	grid-template-columns: repeat(4, 1fr);

	gap: 25px;
}

.counter-box {

	background: #FF4800;

	padding: 35px;

	text-align: center;

	border-radius: 18px;

	box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.counter-box h2 {

	font-size: 38px;

	color: #fff;
}

.counter-box p {
    color: #fff;
	margin-top: 10px;
}
.why-list{
	padding-left: 0px;
}

/* SERVICES */

.section {
	padding: 60px 0;
}

.section-title {

	text-align: center;

	margin-bottom: 50px;
}

.section-title h2 {

	font-size: 42px;

	color: #222;

	margin-bottom: 15px;
}

.section-title p {

	max-width: 800px;

	margin: auto;
}

.services {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;
}

.service-card {

	background: #fff;

	padding: 35px;

	border-radius: 20px;

	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

	transition: .3s;
}

.service-card:hover {

	transform: translateY(-10px);
}

.service-card .icon {

	font-size: 45px;

	margin-bottom: 20px;
}

.service-card h3 {

	margin-bottom: 15px;

	color: #222;
}


/* WHY US */

.why {

	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 50px;

	align-items: center;
}

.why img {

	width: 100%;

	border-radius: 20px;
}

.why-list li {

	list-style: none;

	background: #fff;

	padding: 18px;

	margin-bottom: 15px;

	border-radius: 12px;

	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	border-left: 4px solid #FF4800;
}
.form-control{
	width: 89%;
	padding: 0 18px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
}

/* CONTACT */

.contact {

	background: #ff6b00;

	padding: 70px;

	border-radius: 25px;

	text-align: center;

	color: #fff;
}

.contact h2 {

	font-size: 45px;

	margin-bottom: 20px;
}

.contact a {

	display: inline-block;

	margin-top: 25px;

	padding: 15px 35px;

	background: #fff;

	color: #ff6b00;

	text-decoration: none;

	border-radius: 50px;

	font-weight: 600;
}

/* delhi */
.info-section {
	max-width: 1200px;
	margin: 70px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.info-card {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.info-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: #ff6b00;
}

.tag {
	display: inline-block;
	background: #fff2e8;
	color: #ff6b00;
	padding: 8px 18px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.info-card h2 {
	font-size: 32px;
	color: #222;
	margin-bottom: 20px;
}

.info-card p {
	color: #666;
	line-height: 1.9;
	margin-bottom: 15px;
	font-size: 16px;
}
#sendMessageButton {
    color: #fff;
    background-color: #1F1F2E;
    border-color: #1F1F2E;
	padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	width: 100%;
}
.section h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
	text-align: center;
}
@media(max-width:768px) {

	.info-section {
		grid-template-columns: 1fr;
	}

	.info-card {
		padding: 30px;
	}

	.info-card h2 {
		font-size: 26px;
	}

}

@media (max-width: 1024px) {
	.branches-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:991px) {

	.hero-wrapper,
	.why {

		flex-direction: column;
		padding: 0px 22px;
	}
    .container {
    width: 100%;
}
	.hero-content, .quote-form {
    width: 76%;
    text-align: center;
}
     .counter {
    padding: 40px 20px;
}
	.section {
		padding: 50px 0;
	}
     .section .why{
		display: flex;
      flex-direction: column;
	 }
	 .section h2{
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
	text-align: center;
}
	.services {
        padding: 0px 20px;
		grid-template-columns: 1fr;
	}

	.counter-wrap {

		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 768px) {
	.branches-container {
		grid-template-columns: 1fr;
		justify-content: center;
		align-items: center;
	}

	.hero-content h1 {
		font-size: 41px;
		line-height: 1.1;
	}

	.counter-wrap {
		grid-template-columns: repeat(1, 1fr);
	}

	.section {
		padding: 40px 0;
	}

	.contact {
		padding: 40px 30px;
	}

	.section-title {
		font-size: 24px;
	}

	.contact h2 {
		font-size: 37px;
		line-height: 42px;
	}
	.branch-column li a {
    width:80%;
}
.packers-content {
    margin: 40px 0px 0px 0px;
}
.branches-section {
    padding: 20px 20px;
}
.branches-section h2 {
    margin-bottom: 20px;
}
.service-card {
    text-align: center;
}
}

/*************************** inner pages********************************************* */


.packers-content {
	max-width: 1200px;
	margin: 60px auto 0px auto;
	padding: 0 20px;
	font-family: 'Poppins', sans-serif;
}

.packers-content .heading {
	text-align: center;
	margin-bottom: 50px;
}

.packers-content .heading h1 {
	font-size: 42px;
	color: #222;
	margin-bottom: 15px;
}

.packers-content .heading p {
	font-size: 17px;
	color: #666;
	line-height: 1.8;
	max-width: 900px;
	margin: auto;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.service-card {
	background: #fff;
	padding: 30px;
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	transition: .3s;
	border-top: 4px solid #ff6b00;
}

.service-card:hover {
	transform: translateY(-8px);
}

.service-card h3 {
	font-size: 24px;
	color: #222;
	margin-bottom: 15px;
}

.service-card p {
	color: #666;
	line-height: 1.9;
}

.process-box {
	background: #f8f9fc;
	padding: 50px;
	border-radius: 20px;
	margin-top: 70px;
}

.process-box h2 {
	text-align: center;
	font-size: 38px;
	margin-bottom: 35px;
	color: #222;
}

.process-box ol {
	max-width: 800px;
	margin: auto;
}

.process-box ol li {
	font-size: 18px;
	margin-bottom: 15px;
	color: #555;
}

.items-box {
	margin-top: 70px;
}

.items-box h2 {
	text-align: center;
	font-size: 38px;
	color: #222;
	margin-bottom: 40px;
}

.items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.item {
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
	text-align: center;
}

.item h4 {
	color: #222;
}

.why-us {
	margin-top: 80px;
}

.why-us h2 {
	text-align: center;
	font-size: 40px;
	margin-bottom: 40px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

.why-card {
	background: #fff;
	padding: 30px;
	border-radius: 18px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.why-card h3 {
	color: #222;
	margin-bottom: 15px;
}

.why-card p {
	color: #666;
	line-height: 1.8;
}

.bottom-text {
	margin-top: 50px;
	background: #ff6b00;
	color: #fff;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	font-size: 18px;
	line-height: 1.9;
}

@media(max-width:768px) {
	.packers-content .heading h1 {
		font-size: 32px;
	}

	.process-box {
		padding: 30px 20px;
	}
}