:root {
	--blue: #1E2A44;
	--white: #ffffff;
	--green: #1E7F5C;
	--orange: #F28C28;
	--lightblue: #F7F9FC;
}

.reveal {
	opacity: 0;
}

.reveal.animate__animated {
	opacity: 1;
}

body {
	background: #fff;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	padding: 0;
	margin: 0;
	line-height: 1.5em;
}

h1,
h2 {
	font-family: "Oswald", sans-serif;
}

p,
a,
.btn,
span {
	font-family: "Inter", sans-serif;
}

@media (min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1440px;
	}
}

.color_btn {
    background:var(--orange);
	padding: 17px 20px;
	color: var(--white);
	border-radius: 10px;
	text-decoration: none;
	line-height: 18px;
}

.border_btn{
    background: transparent !important;
    padding: 16px 20px;
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    line-height: 18px;
    border: 1px solid #3177c4;
    transition: all 300ms linear;
}
.border_btn:hover {
    background: #3177c4 !important;
}

.round_btn {
	background:var(--orange);
	padding: 17px 20px;
	color: var(--white);
	border-radius: 10px;
	text-decoration: none;
}

header {
	background: var(--white);
	padding:20px 0;

	.logo {
		img {
			width: 150px;
			border-radius:10px;
			
		}
	}
	.logo-right
	{
	    img
	    {
	        width: 60px;
			/*border-radius:10px;*/
			filter: brightness(0) invert(1);
	    }
	}
	
	.btn-primary
	{
	    background:var(--orange);
	    color:var(--white);
	    border:0;
	    &:hover
	    {
	        background:var(--orange);
	        color:var(--white);
	    }
	}
	
	.top-nav 
	{
		display: flex;
	}

	.top-nav a {
		color:var(--blue);
		text-decoration: none;
		font-size: 15px;
		padding:2px 10px !important;
	}

	.top-nav a:hover {
		text-decoration: none;
		color: var(--orange);
	}

	.top-nav a.active {
		text-decoration: none;
		background: var(--orange) !important;
		color: var(--white) !important;
		font-weight: bold;
	}

	.header_contact {
		display: flex;
		gap: 40px;
		/*justify-content: flex-end;*/
		align-items: center;
		align-content: center;

		.hc_item {
			display: flex;
			gap: 10px;
			align-content: center;
			align-items: center;

			.hc_content {
				p {
					font-size: 13px;
					color: var(--orange);
					margin-bottom: 0;
					padding-bottom: 0;
					font-weight: 500;
				}

				h4 {
					font-size: 16px;
					color: var(--white);
				}
			}
		}
	}
}

.menu {
	background: var(--blue);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 17px 0;
	margin-top: 20px;
	display:none;

	.top-nav {
		display: flex;
		gap: 24px;
		justify-content: space-between;
		width: 100%;
	}

	.top-nav a {
		color: #fff;
		text-decoration: none;
		font-size: 15px;
	}

	.top-nav a:hover {
		text-decoration: none;
		color: var(--orange);
	}

	.top-nav a.active {
		text-decoration: none;
		color: var(--orange);
		font-weight: bold;
	}
}

.clearfix {
	padding: 5px 0;
}


/* ------------- Navbar Toggle ------------- */
#Header {
    background-color: var(--blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

	.navbar-toggler {
		border: 0;
	}
	
	.header-logo{
		background-color: #3177c4;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}
	
	.nav-link{
	    color: var(--white);
	    border-radius: 7px;
	}
	
	.nav-link:hover{
	    background-color: var(--orange);
	}

	.nav-link.active {
		color: var(--orange);
	}
	
	.dropdown-item.active{
        background-color: var(--orange);
    }
    
    .dropdown-item:active{
        background-color: #3177c4;
    }
	
	.nav-link.active:hover{
	    color: var(--white);
	}

	.nav_toggle {
		width: 32px;
		height: 24px;
		position: relative;
		cursor: pointer;
	}

	.nav_toggle span {
		position: absolute;
		width: 100%;
		height: 2px;
		background: #fff;
		left: 0;
		transition: 0.4s;
	}

	.nav_toggle span:nth-child(1) {
		top: 0;
	}

	.nav_toggle span:nth-child(2) {
		top: 11px;
	}

	.nav_toggle span:nth-child(3) {
		bottom: 0;
	}

	.nav_toggle[aria-expanded="true"] span:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}

	.nav_toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.nav_toggle[aria-expanded="true"] span:nth-child(3) {
		transform: rotate(-45deg);
		bottom: 11px;
	}
}


/* Hero Animation */
.hero_section #gridCanvas {
	position: absolute;
	inset: 0;
	z-index: 0;
	
}

.hero_section canvas 
{
	display: block;
}

/* End of Hero Animation */

.hero_section::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background: url(../img/gujarat-border.png) no-repeat;
    background-size: 100%;
    background-position: center bottom;
    z-index: 2;
    filter: contrast(0.5) saturate(0.5);
}

.hero_section {
	background: var(--white);
	background-size:contain;
	padding-top: 8rem;
	padding-bottom: 13rem;
	position: relative;

	.hero_img {
		width: 100%;

		img {
			height: 100%;
			width: 100%;
			object-fit: cover;
			border-radius: 20px;
			border: 1px solid rgba(255, 255, 255, 0.6);
			padding: 10px;

		}
	}

	.hero_content {
		position: relative;
		z-index: 9;

		h1 {
			font-size: 66px;
			color: var(--white);
			line-height: 1.2em;
			text-transform: uppercase;

			span {
				color: var(--orange);
				text-transform: uppercase;
			}
		}
        h3
        {
            color: var(--white);
            text-align:center;
            text-transform:uppercase;
            font-size:25px;
        }
        h4
        {
             color: var(--orange);
            text-align:center;
            text-transform:uppercase;
            font-size:25px;
        }
		p {
			font-size:20px;
			font-weight: 400;
			margin-bottom: 10px;
			color: var(--white);
			span
			{
			    background: #1463B1;
                background: -webkit-linear-gradient(268deg, rgba(20, 99, 177, 1) 0%, rgba(49, 177, 80, 1) 52%, rgba(248, 109, 33, 1) 99%);
                background: -moz-linear-gradient(268deg, rgba(20, 99, 177, 1) 0%, rgba(49, 177, 80, 1) 52%, rgba(248, 109, 33, 1) 99%);
                background: linear-gradient(268deg, rgba(20, 99, 177, 1) 0%, rgba(49, 177, 80, 1) 52%, rgba(248, 109, 33, 1) 99%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1463B1", endColorstr="#F86D21", GradientType=0);
			    padding:10px 10px;
			    border-radius:5px;
			    @media (max-width: 575.98px)
			    {
			        background:none !important;
			    }
			}

			&:last-child {
				margin-bottom: 0;
			}
		}

		.hero-text {
			width: 70%;
			margin-left: auto;
			margin-right: auto;
		}
	}

	.hero_contact {
		display: flex;
		gap: 40px;
		align-items: center;
		align-content: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 30px;
		justify-content: center;

		.hc_item {
			display: flex;
			gap: 10px;
			align-content: center;
			align-items: center;

			.hc_content {
				p {
					font-size: 14px;
					color: var(--white);
					margin-bottom: 0;
					padding-bottom: 0;
					font-weight: 500;
				}

				h4 {
					font-size: 18px;
					color: var(--white);
				}
			}
		}
	}

	.hero_btn {
		display: flex;
		gap: 10px;
		margin-top: 30px;
		justify-content: center;
	}
}


.section_padding {
	padding: 5rem 0;
}

.blue_color {
	background: var(--blue);
}

.text-white {
	color: var(--white);
}

.text-right {
	text-align: right;
}

.white_color {
	background: var(--white);
}

.light_color {
	background: var(--lightblue);
}

.section_title {
	h2 {
		font-size: 36px;
		text-transform: uppercase;
	}
}

.section_border
{
    background:url(../img/border-with-backgruond.png) no-repeat;
	background-size:cover;
	height:50px;
}

.about_section 
{
    
    
    
	img {
		width: 90%;
	}

	p {
		padding-bottom: 10px;
		font-size: 16px;

		&:last-child {
			padding-bottom: 0;
		}
	}

	.about_btn {
		margin-top: 30px;
	}

	.section_title {
		margin-bottom: 20px;
	}
}

.objectives_section {
      .objectives_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 30px;
      }

      @media (max-width: 991.98px) {
        .objectives_grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 575.98px) {
        .objectives_grid {
          grid-template-columns: 1fr;
        }
      }

      .objectives_grid .item {
        padding: 20px;
        border-radius: 12px;
        background: #fff;
        border: 1.8px solid transparent;
        background:
          linear-gradient(#fff, #fff) padding-box,
          linear-gradient(180deg, #1E7F5C, #F28C28) border-box;

        h6 {
          font-family: "Inter", sans-serif;
          font-weight: 600;
          font-size: 18px;
          margin-bottom: 10px;
        }

        p {
          font-size: 16px;
        }

        .objectives-img {
          width: 70px;
          height: 70px;
          margin-bottom: 30px;
          position: relative;
          z-index: 2;
        }
        .objectives-img::after {
          position: absolute;
          content: '';
          right: -12px;
          bottom: -7px;
          height: 40px;
          width: 40px;
          background-color: #f28c28;
          border-radius: 100px;
          opacity: 0.1;
          z-index: 0;
        }

        .objectives-img img {
          height: 100%;
          width: 100%;
          object-fit: contain;
        }
      }

      .objectives_btn {
        margin-top: 50px;
        text-align: center;

        .color_btn {
          background: var(--orange);
        }
      }
    }

.key_focus_section {
	.key_focus_card {
		margin-top: 20px;

		.key_focus_img {
			img {
				width: 100%;
				height: 100%;
				border-radius: 10px;
			}
		}

		.key_focus_content {
			margin-top: 20px;

			h3 {
				margin-bottom: 10px;
				font-weight: 700;
				font-size: 20px;
			}

			ul {
				padding: 0;
				margin: 0;
				list-style: none;

				li {
					font-size: 16px;
					position: relative;
					padding-left: 20px;
					padding-bottom: 5px;

					&::before {
						content: "";
						position: absolute;
						left: 0;
						top: 5px;
						width: 15px;
						height: 15px;
						background-image: url("../img/arrow_icon.svg");
						background-size: contain;
						background-repeat: no-repeat;
					}
				}
			}
		}

		.key_focus_link {
			margin-top: 10px;

			a {
				color: var(--green);
				font-size: 16px;
				font-weight: 700;
			}

		}
	}
}

.priority_sectors_section {
	.gsc_priority_sectors {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 24px;
		margin-top: 40px;

		.priority-item {
			background: var(--white);
			border-radius: 5px;
			flex: 0 0 calc(33.333% - 24px);
			max-width: calc(33.333% - 24px);
			padding: 15px;
			display: flex;
			gap: 15px;
			align-items: center;
			align-content: center;
		}
		
		.priority-icon {
		    height: 55px;
            width: 55px;

		    img{
		        height: 100%;
		        width: 100%;
		        object-fit: contain;
		    }
		}

		i {
			color: var(--orange);
			font-size: 40px;
		}

		span {
			font-weight: 600;
			font-size: 16px;
		}

		@media (max-width: 991.98px) {
			.priority-item {
				flex: 0 0 calc(50% - 24px);
				max-width: calc(50% - 24px);
			}
		}

		@media (max-width: 575.98px) {
			.priority-item {
				flex: 0 0 100%;
				max-width: 100%;
			}
		}
	}
}

.key_highlights_section 
{
	.stats-wrap {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 40px;
	}

	.stat-box 
	{
		flex: 0 0 calc(50% - 20px);
		/* 4 columns */
		border-radius: 10px;
		padding: 30px;
		text-align: center;
		min-height: 145px;
		
		&:nth-child(1)
		{
		    background:#1361b4;
		    h3
		    {
		        color:var(--white);
		    }
		    p
		    {
		        color:var(--white);
		    }
		}
		&:nth-child(2),
		&:nth-child(7)
		{
		    background:#32b44d;
		    h3
		    {
		        color:var(--white);
		    }
		    p
		    {
		        color:var(--white);
		    }
		}
		&:nth-child(3),
		&:nth-child(8)
		{
		    background:#ff6a20;
		    h3
		    {
		        color:var(--white);
		    }
		    p
		    {
		        color:var(--white);
		    }
		}
		&:nth-child(4)
		{
		    background:#63cec6;
		    h3
		    {
		        
		    }
		    p
		    {
		        
		    }
		}
		&:nth-child(5)
		{
		    background:#ffda4a;
		    h3
		    {
		        
		    }
		    p
		    {
		        
		    }
		}
		&:nth-child(6)
		{
		    background:#0c376b;
		    h3
		    {
		        color:var(--white);
		    }
		    p
		    {
		        color:var(--white);
		    }
		}
		
	}

	.stat-box h3 {
		font-size: 26px;
		margin: 0;
		font-weight: 700;
		font-family: "Oswald", sans-serif;
	}

	.stat-box p {
		margin: 6px 0 0;
		font-size: 16px;
		color: #555;
	}

	/* Bottom 2 centered */
	.stat-box.wide {
		flex: 0 0 calc(50% - 20px);
	}

	/* Responsive */
	@media (max-width: 992px) {
		.stat-box {
			flex: 0 0 calc(50% - 20px);
		}

		.stat-box.wide {
			flex: 0 0 100%;
		}
	}

	@media (max-width: 576px) {
		.stat-box {
			flex: 0 0 100%;
		}
	}

}

.key_elements_section {

	.agenda-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
		margin-top: 30px;
	}

	.agenda-item {
		flex: 0 0 calc(50% - 8px);
		/* 2 columns */
	}

	/* Last item full width */
	.agenda-item:last-child {
		flex: 0 0 100%;
	}

	/* CARD */
	.agenda-item {
		background: #ffffff;
		border: 1px solid #e5e7eb;
		border-radius: 10px;
		padding: 16px 18px;
		transition: all 0.3s ease;
	}



	.agenda-item h4 {
		font-size: 18px;
		font-weight: 600;
		margin: 0 0 6px;
		position: relative;
		padding-left: 22px;
		/* space for icon */
		color: #111827;
	}

	.agenda-item h4::before {
		content: "";
		position: absolute;
		left: 0;
		top: 7px;

		width: 13px;
		height: 13px;

		background-image: url("../img/arrow_icon.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.agenda-item p {
		font-size: 16px;
		color: #4b5563;
		line-height: 1.5;
		margin: 0;
	}

	@media (max-width: 768px) {
		.agenda-item {
			flex: 0 0 100%;
		}
	}

}

.participation_target_audience_section {

	.stakeholder-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		margin-top: 40px;
		justify-content: center;
	}

	.stakeholder-item {
		background: var(--lightblue);
		border-radius: 14px;
		padding: 25px 20px;
		border: 1px solid #E8E8E8;
		transition: transform 0.3s ease;
		text-align: center;

		flex: 0 0 calc(20% - 20px);
	}
	
	.target-icon{
	   width: 60px;
	   height: 60px;
	   margin: 0 auto;
	   
	   img{
	    width: 100%;
	    height: 100%;
	    object-fit: contain;
	   }
	}

	/* Hover */
	.stakeholder-item:hover {
		transform: translateY(-6px);
	}

	/* Icon */
	.stakeholder-item i {
		font-size: 35px;
		margin-bottom: 15px;
		color: #f16728;
	}

	/* Text */
	.stakeholder-item h3 {
		font-size: 16px;
		font-weight: 600;
		margin: 10px 0 6px;
		color: #1a1a1a;
	}

	.stakeholder-item p {
		font-size: 14px;
		color: #666;
		margin: 0;
	}

	/* Large tablets / small laptops */
	@media (max-width: 1200px) {
		.stakeholder-item {
			flex: 0 0 calc(25% - 19px);
			/* 4 columns */
		}
	}

	/* Tablets */
	@media (max-width: 992px) {
		.stakeholder-item {
			flex: 0 0 calc(33.333% - 17px);
			/* 3 columns */
		}
	}

	/* Large mobiles */
	@media (max-width: 768px) {
		.stakeholder-item {
			flex: 0 0 calc(50% - 12px);
			/* 2 columns */
		}
	}

	/* Mobiles */
	@media (max-width: 480px) {
		.stakeholder-item {
			flex: 0 0 100%;
			/* 1 column */
		}
	}

}


.outcomes_section {
	.conclusion_wrap {
		background: var(--green);
		border-radius: 10px;
		padding: 30px;
		margin-top: 70px;

		h2 {
			color: var(--white);
			font-size: 36px;
			text-transform: uppercase;
			margin-bottom: 10px;
		}

		p {
			font-size: 16px;
			margin-bottom: 10px;
			color: var(--white);

			&:last-child {
				margin-bottom: 0;
			}
		}

	}
}

footer {
	background: var(--blue);
	padding: 4rem 0;

	.footer_logo {
		img {
			width: 45%;
		}
	}

	.footer_about {
		/*margin-top: 15px;*/
		/*max-width: 350px;*/

		p {
			color: var(--white);
			font-size: 16px;
		}
	}

	.footer-title {
		color: var(--white);
		font-size: 22px;
		text-transform: uppercase;
		padding-bottom: 10px;
	}

	.footer-links {
		/*display: flex !important;*/
		/*flex-wrap: wrap !important;*/
		/*max-width: 400px;*/
	}

	.footer-links a {
		/*width: 50% !important;*/
		display: block;
		font-size: 16px;
		color: var(--white);
		text-decoration: none;
		margin-bottom: 6px;
	}

	.footer-links a:hover {
		color: var(--orange);
	}

	@media (max-width: 576px) {
		.footer-links a {
			width: 100% !important;
		}
	}

	.footer_contact {
		.item {
			margin-bottom: 15px;

			&:last-child {
				margin-bottom: 0;
			}

			p {
				font-size: 16px;
				font-weight: 500;
				color: var(--white);
				padding-bottom:0 !important;
				margin-bottom:0 !important;

				i {
					font-size: 14px;
					color:#f28c28;
				}
			}

			h6 {
				font-size: 16px;
				color: var(--white);
			}
		}
	}

	.footer_event {
		display: grid;
		grid-gap: 20px;

		.hc_item {
			display: flex;
			gap: 10px;
			align-content: flex-start;
			align-items: flex-start;

			.hc_content {
				p {
					font-size: 16px;
					color: var(--white);
					margin-bottom: 0;
					padding-bottom: 0;
					font-weight: 500;
				}

				h4 {
					font-size: 16px;
					color: var(--white);
				}
			}
		}
	}
}

.end_footer_section {
	background: var(--blue);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0;

	p {
		color: var(--white);

		a {
			color: var(--orange);
			text-decoration: none;
		}
	}

	.social_link {
		justify-content: flex-end;
		display: flex;
		gap: 20px;

		a {
			color: #fff;
			font-size: 22px;
			transition: all 300ms linear;
		}
	}
	.social_link a:hover{
	    color: var(--orange);
	}
}

.page_heading_section {
	background: var(--blue);
	padding: 2rem 0;
	/*border-top: 1px solid rgba(255, 255, 255, 0.15);*/

	h1 {
		color: var(--white);
		text-transform: uppercase;
	}

	p {
		font-size: 16px;
		color: var(--white);
	}
}

.collection-introduction {
	.about_section {
		img {
			/*border: 1px solid rgba(0, 0, 0, 0.2);*/
		}

		.align-items-center {
			align-items: flex-start !important;
		}
	}
}

.collection-objectives {
	.objectives_grid {
		margin-top: 0 !important;
	}
}



.outcomes_section {
    .outcome-list {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .outcome-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 30px 20px;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid #e6e9f0;
        transition: all 0.35s ease;
        cursor: pointer;
        width: 32%;
    }

    .outcome-item:hover {
        transform: translateY(-6px);
        border-color: #1361b4;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .outcome-img {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.35s ease;
    }

    .outcome-img img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        opacity: 0.7;
    }

    .outcome-item:hover .outcome-img {
        background: #1361b4;
    }

    .outcome-item:hover .outcome-img img {
        filter: brightness(0) invert(1);
        opacity: 1;
    }

    .outcome-info h4 {
        margin: 0 0 4px;
        font-size: 18px;
        font-weight: 600;
        color: #1e2a44;
    }

    .outcome-info p {
        margin: 0;
        font-size: 16px;
        color: #555;
    }

    @media (max-width: 992px) {
        .outcome-item {
            width: 100%;
        }

        .outcome-info h4 {
            font-size: 16px;
        }

        .outcome-info p {
            font-size: 14px;
        }
    }
}

/* Home Page New Hero Section */
@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(var(--move-x), var(--move-y));
    }
}
.home_hero_section {
    background: var(--white);
    background: url(../img/infrastrucure.png) no-repeat;
    background-size: cover;
    background-position: center top;
    padding-top: 8rem;
    padding-bottom: 13rem;
    position: relative;
    overflow: hidden;
    
    .home_hero_img img {
      height: 100%;
      width: 100%;
    }

    .home_hero_img {
      position: relative;
      z-index: 2;
      mix-blend-mode: darken;
    }
    
    .bg-video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      pointer-events: none;
    }

    .home_logo_img {
      width: 300px;
      margin: 0 auto;

      img {
        height: 100%;
        width: 100%;
        object-fit: contain;
      }
    }
    .home_overlay{
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        background-size: 100%;
        background-position: center bottom;
        z-index: 1;
    }
    #movingDotsAnimation {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-color: transparent;
        overflow: hidden;
        pointer-events: none;
    }

    .dot {
        position: absolute;
        border-radius: 50%;
        opacity: 0.7;
        animation: moveDots linear infinite;
        will-change: transform;
    }
}

.home_hero_section::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background: url(../img/gujarat-border-1.png) no-repeat;
    background-size: 100%;
    background-position: center bottom;
    z-index: 2;
}


/* Partners Page Logo Scrolling Section */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
.home-partners-section{
    padding-top: 0px;
}
.partners_section {
    
    .divider_box{
        margin: 0 0 4rem 0;
        height: 1px;
        width: 100%;
        background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0) 100%);
    }
    
    .partner-title{
        font-size: 22px;
    }
    .partners_logo {
        overflow: hidden;
        position: relative;
    }

    .partners_logo::before,
    .partners_logo::after {
        content: "";
        position: absolute;
        top: 0;
        width: 200px;
        height: 100%;
        z-index: 2;
    }

    .partners_logo::before {
        left: 0;
        background: linear-gradient(to right, #fff, transparent);
    }

    .partners_logo::after {
        right: 0;
        background: linear-gradient(to left, #fff, transparent);
    }

    .partners-track {
        display: flex;
        width: max-content;
        animation: scroll 30s linear infinite;
    }

    .partners_logo:hover .partners-track {
        animation-play-state: paused;
    }

    .partners_items {
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 130px;
        width: 220px;
        border: 1px solid #d2d2d2;
        margin: 0 10px;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 5px;
    }

    .logo-img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .partners_static_logo{
        .logo-img{
            height: 130px;
            width: 400px;
        }
    }
}

/* Contact Page SEction */
.contact_info_section {
    .gsc-contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gsc-contact-box {
        border: 1px solid rgba(0, 0, 0, 0.15);
        padding: 30px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .gsc-contact-box:hover {
        transform: translateY(-6px);
    }

    .gsc-contact-box h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--orange);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .gsc-contact-box h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--blue);
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
    }

    .gsc-contact-box p {
        margin: 8px 0 0 0;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0.95;
    }

    .gsc-contact-box i {
        color: var(--blue);
        font-size: 16px;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .gsc-contact-grid {
            grid-template-columns: 1fr;
        }
    }
}


/* B2G Page Section */
.b2g_section {

    h2 {
        color: var(--blue);
    }
    
    .b2g_highlights {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .single-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        column-gap: 70px;
        position: relative;
        z-index: 1;
    }

    .item-img {
        height: 80px;
        max-height: 80px;
        width: 80px;
        background-color: var(--blue);
        border-radius: 100px;
        padding: 15px;
        box-sizing: border-box;
    }

    .item-img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .item-info {
        background-color: #fff;
        border: 1px solid #d3d3d3;
        border-radius: 10px;
        padding: 20px;
    }

    .single-item::after {
        position: absolute;
        content: '';
        top: 34px;
        left: 75px;
        width: 80px;
        height: 1px;
        border-bottom: 2px dashed var(--orange);
        z-index: -1;
    }

    .single-item::before {
        position: absolute;
        content: '';
        top: 30px;
        left: 39px;
        width: 1px;
        height: 100%;
        border-left: 2px dashed var(--orange);
        z-index: -1;
    }

    .single-item:last-child::before {
        display: none;
    }
    
    h3 {
        font-family: "Oswald", sans-serif;
        color: var(--blue);
        font-size: 26px;
        text-transform: uppercase;
    }
    
    .item-info h3 {
        font-size: 20px;
    }
    
    .note-text{
        font-size: 14px;
        opacity: 0.8;
        font-style: italic;
    }
    
    ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    ul li {
        font-size: 16px;
        position: relative;
        padding-left: 20px;
    }
    
    ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 13px;
        height: 13px;
        background-image: url(../img/arrow_icon.svg);
        background-size: contain;
        background-repeat: no-repeat;
    }
}